diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2009-10-04 13:23:47 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2009-10-04 13:23:47 +0200 |
commit | 7b6ddb687ceb1faf1b100929c501ab403e3e63de (patch) | |
tree | 82ea5890bb700799540bdb39f1ae066a6431f3b6 /src/gui/charselectdialog.cpp | |
parent | 69217e82e8631bbb2183a1322d0985a495c52f5e (diff) | |
download | mana-client-7b6ddb687ceb1faf1b100929c501ab403e3e63de.tar.gz mana-client-7b6ddb687ceb1faf1b100929c501ab403e3e63de.tar.bz2 mana-client-7b6ddb687ceb1faf1b100929c501ab403e3e63de.tar.xz mana-client-7b6ddb687ceb1faf1b100929c501ab403e3e63de.zip |
Made sure the server information updates when dragging the server list
It was only updating on click events, due to using ActionListener
instead of SelectionListener.
Diffstat (limited to 'src/gui/charselectdialog.cpp')
-rw-r--r-- | src/gui/charselectdialog.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/charselectdialog.cpp b/src/gui/charselectdialog.cpp index fef319d9..2fe83849 100644 --- a/src/gui/charselectdialog.cpp +++ b/src/gui/charselectdialog.cpp @@ -74,6 +74,7 @@ class CharDeleteConfirm : public ConfirmDialog master(m) { } + void action(const gcn::ActionEvent &event) { //ConfirmDialog::action(event); @@ -83,6 +84,7 @@ class CharDeleteConfirm : public ConfirmDialog } ConfirmDialog::action(event); } + private: CharSelectDialog *master; }; |