summaryrefslogtreecommitdiff
path: root/indra/newview/llbottomtray.h
diff options
context:
space:
mode:
authorAndrew Dyukov <adyukov@productengine.com>2010-09-13 18:19:59 +0300
committerAndrew Dyukov <adyukov@productengine.com>2010-09-13 18:19:59 +0300
commit026b2abf91bb377b4d4df0e28bbd92476144c6e4 (patch)
tree892926f1d3cef4c6f9b44d3069449bc132756eb4 /indra/newview/llbottomtray.h
parent5bb98a395482927a5dbe68cb6888b0b116ffea67 (diff)
Little refactoring.
Removed unused "mask" arguments from three sidetray methods.
Diffstat (limited to 'indra/newview/llbottomtray.h')
-rw-r--r--indra/newview/llbottomtray.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llbottomtray.h b/indra/newview/llbottomtray.h
index 700debb4a0..1197c5a10a 100644
--- a/indra/newview/llbottomtray.h
+++ b/indra/newview/llbottomtray.h
@@ -134,9 +134,9 @@ public:
* handleHover and other virtual handle* couldn't be used here, because we should call LLPanel::handle*,
* but x and y here are often outside of bottomtray.
*/
- void onDraggableButtonHover(S32 x, S32 y, MASK mask);
- void onDraggableButtonMouseDown(LLUICtrl* button, S32 x, S32 y, MASK mask);
- void onDraggableButtonMouseUp(LLUICtrl* button, S32 x, S32 y, MASK mask);
+ void onDraggableButtonHover(S32 x, S32 y);
+ void onDraggableButtonMouseDown(LLUICtrl* button, S32 x, S32 y);
+ void onDraggableButtonMouseUp(LLUICtrl* button, S32 x, S32 y);
private: