summaryrefslogtreecommitdiff
path: root/src/gui/setup_players.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2008-05-19 10:48:18 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2008-05-19 10:48:18 +0000
commit0c869fc47a30616967cb8b69af9ec772566d7076 (patch)
tree7202c51c95648dd3862a57f21eb82fc9cc0b7b69 /src/gui/setup_players.h
parent8d3028707f0c5b65c3a78178f63a0cccc9a0c9a8 (diff)
downloadmana-client-0c869fc47a30616967cb8b69af9ec772566d7076.tar.gz
mana-client-0c869fc47a30616967cb8b69af9ec772566d7076.tar.bz2
mana-client-0c869fc47a30616967cb8b69af9ec772566d7076.tar.xz
mana-client-0c869fc47a30616967cb8b69af9ec772566d7076.zip
Removed the PopupBox class and used gcn::DropDown instead. It has clipping
issues, but it would be better to fix those instead of using this complicated workaround.
Diffstat (limited to 'src/gui/setup_players.h')
-rw-r--r--src/gui/setup_players.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gui/setup_players.h b/src/gui/setup_players.h
index 2c6ccc82..b04023ab 100644
--- a/src/gui/setup_players.h
+++ b/src/gui/setup_players.h
@@ -27,7 +27,6 @@
#include "scrollarea.h"
#include "button.h"
#include "table.h"
-#include "popup_box.h"
#include <guichan/actionlistener.hpp>
#include "../guichanfwd.h"
@@ -52,7 +51,6 @@ public:
virtual void updatedPlayer(const std::string &name);
private:
-
StaticTableModel *mPlayerTableTitleModel;
PlayerTableModel *mPlayerTableModel;
GuiTable *mPlayerTable;
@@ -64,7 +62,7 @@ private:
gcn::CheckBox *mDefaultWhisper;
Button *mDeleteButton;
- PopupBox *mIgnoreActionChoicesBox;
+ gcn::DropDown *mIgnoreActionChoicesBox;
};
#endif