diff options
Diffstat (limited to 'indra/newview/lltoolselect.h')
-rw-r--r-- | indra/newview/lltoolselect.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/newview/lltoolselect.h b/indra/newview/lltoolselect.h index f6359863a8..c3d10424b1 100644 --- a/indra/newview/lltoolselect.h +++ b/indra/newview/lltoolselect.h @@ -35,7 +35,6 @@ #include "lltool.h" #include "v3math.h" #include "lluuid.h" -#include "llviewerwindow.h" // for LLPickInfo class LLObjectSelection; @@ -46,10 +45,11 @@ public: virtual BOOL handleMouseDown(S32 x, S32 y, MASK mask); virtual BOOL handleMouseUp(S32 x, S32 y, MASK mask); + virtual BOOL handleDoubleClick(S32 x, S32 y, MASK mask); virtual void stopEditing(); - static LLSafeHandle<LLObjectSelection> handleObjectSelection(const LLPickInfo& pick, BOOL ignore_group, BOOL temp_select, BOOL select_root = FALSE); + static LLSafeHandle<LLObjectSelection> handleObjectSelection(LLViewerObject *object, MASK mask, BOOL ignore_group, BOOL temp_select); virtual void onMouseCaptureLost(); virtual void handleDeselect(); @@ -57,7 +57,6 @@ public: protected: BOOL mIgnoreGroup; LLUUID mSelectObjectID; - LLPickInfo mPick; }; |