diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-07-16 19:26:59 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-07-16 19:26:59 +0000 |
commit | a6db4d8004da5ad985a5ff26c0c01976a5618449 (patch) | |
tree | 5ed3dea6a28222de87840a4d1966338098123993 /src/gui/popupmenu.h | |
parent | f4aedad02e8994f89a4137d175dba2666a7005bc (diff) | |
download | mana-client-a6db4d8004da5ad985a5ff26c0c01976a5618449.tar.gz mana-client-a6db4d8004da5ad985a5ff26c0c01976a5618449.tar.bz2 mana-client-a6db4d8004da5ad985a5ff26c0c01976a5618449.tar.xz mana-client-a6db4d8004da5ad985a5ff26c0c01976a5618449.zip |
Updated changelog, got rid of remaining extern SDL_Surface *screen cases,
fixed double free and cleaned up a bit.
Diffstat (limited to 'src/gui/popupmenu.h')
-rw-r--r-- | src/gui/popupmenu.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/gui/popupmenu.h b/src/gui/popupmenu.h index bb68852b..cfafc739 100644 --- a/src/gui/popupmenu.h +++ b/src/gui/popupmenu.h @@ -48,11 +48,6 @@ class PopupMenu : public Window, public LinkHandler ~PopupMenu(); /** - * Sets the visibility of popup - */ - void setVisible(bool visible); - - /** * Shows the related popup menu specifies by the mouse click coords. */ void showPopup(int mx, int my); @@ -61,11 +56,11 @@ class PopupMenu : public Window, public LinkHandler * Handles link action. */ void handleLink(const std::string& link); - + private: BrowserBox* browserBox; int mX, mY; - + Being* being; FloorItem* floorItem; }; |