summaryrefslogtreecommitdiff
path: root/indra/llui/llmenubutton.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llui/llmenubutton.h')
-rw-r--r--indra/llui/llmenubutton.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/indra/llui/llmenubutton.h b/indra/llui/llmenubutton.h
index 273af2413e..81ca0e047c 100644
--- a/indra/llui/llmenubutton.h
+++ b/indra/llui/llmenubutton.h
@@ -42,22 +42,14 @@ public:
Optional<std::string> menu_filename;
Params();
- };
-
- enum EMenuPosition
- {
- ON_TOP_LEFT,
- ON_BOTTOM_LEFT
- };
+ };
void toggleMenu();
- void setMenuPosition(EMenuPosition position = ON_BOTTOM_LEFT);
/*virtual*/ void draw();
/*virtual*/ BOOL handleMouseDown(S32 x, S32 y, MASK mask);
/*virtual*/ BOOL handleKeyHere(KEY key, MASK mask );
void hideMenu();
LLMenuGL* getMenu() { return mMenu; }
- void setMenu(LLMenuGL* menu) { mMenu = menu; }
protected:
friend class LLUICtrlFactory;
@@ -66,7 +58,6 @@ protected:
private:
LLMenuGL* mMenu;
bool mMenuVisibleLastFrame;
- S32 mX, mY;
};