aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/lljoystickbutton.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/lljoystickbutton.h')
-rw-r--r--linden/indra/newview/lljoystickbutton.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/linden/indra/newview/lljoystickbutton.h b/linden/indra/newview/lljoystickbutton.h
index ed0d1dd..49db055 100644
--- a/linden/indra/newview/lljoystickbutton.h
+++ b/linden/indra/newview/lljoystickbutton.h
@@ -94,9 +94,6 @@ public:
94 : LLJoystick(name, rect, default_image, selected_image, initial) 94 : LLJoystick(name, rect, default_image, selected_image, initial)
95 { } 95 { }
96 96
97 virtual EWidgetType getWidgetType() const { return WIDGET_TYPE_JOYSTICK_TURN; }
98 virtual LLString getWidgetTag() const { return LL_JOYSTICK_TURN; }
99
100 virtual void onHeldDown(); 97 virtual void onHeldDown();
101 98
102 static LLView* fromXML(LLXMLNodePtr node, LLView *parent, LLUICtrlFactory *factory); 99 static LLView* fromXML(LLXMLNodePtr node, LLView *parent, LLUICtrlFactory *factory);
@@ -113,10 +110,6 @@ public:
113 : LLJoystick(name, rect, default_image, selected_image, initial) 110 : LLJoystick(name, rect, default_image, selected_image, initial)
114 { } 111 { }
115 112
116 virtual EWidgetType getWidgetType() const { return WIDGET_TYPE_JOYSTICK_SLIDE; }
117 virtual LLString getWidgetTag() const { return LL_JOYSTICK_SLIDE; }
118
119
120 virtual void onHeldDown(); 113 virtual void onHeldDown();
121 virtual void onMouseUp(); 114 virtual void onMouseUp();
122 115
@@ -183,8 +176,8 @@ protected:
183protected: 176protected:
184 BOOL mInTop; 177 BOOL mInTop;
185 BOOL mInBottom; 178 BOOL mInBottom;
186 LLPointer<LLViewerImage> mPlusInImage; 179 LLUIImagePtr mPlusInImage;
187 LLPointer<LLViewerImage> mMinusInImage; 180 LLUIImagePtr mMinusInImage;
188}; 181};
189 182
190 183