diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-01-13 02:55:05 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-01-13 02:55:05 +0000 |
commit | 682d6a9e44e583c088ed5970d69ef6bd9db7fd23 (patch) | |
tree | 73079cdd7d9b57d104c8db400f09aabc3d833122 /src/gui/ok_dialog.h | |
parent | 3657bf87641144b605d49767cf466f04242c29c9 (diff) | |
download | mana-682d6a9e44e583c088ed5970d69ef6bd9db7fd23.tar.gz mana-682d6a9e44e583c088ed5970d69ef6bd9db7fd23.tar.bz2 mana-682d6a9e44e583c088ed5970d69ef6bd9db7fd23.tar.xz mana-682d6a9e44e583c088ed5970d69ef6bd9db7fd23.zip |
Got rid of Allegro ok dialog completely. Now just the yes_no dialog remaining.
Diffstat (limited to 'src/gui/ok_dialog.h')
-rw-r--r-- | src/gui/ok_dialog.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/gui/ok_dialog.h b/src/gui/ok_dialog.h index 95ae52da..bb1a4e58 100644 --- a/src/gui/ok_dialog.h +++ b/src/gui/ok_dialog.h @@ -39,7 +39,8 @@ class OkDialog : public Window, public gcn::ActionListener { * * @see Window::Window */ - OkDialog(const std::string &title, const std::string &msg); + OkDialog(const std::string &title, const std::string &msg, + gcn::ActionListener *listener = NULL); /** * Constructor with parent reference. @@ -47,7 +48,8 @@ class OkDialog : public Window, public gcn::ActionListener { * @see Window::Window */ OkDialog(Window *window, const std::string &title, - const std::string &msg); + const std::string &msg, + gcn::ActionListener *listener = NULL); /** * Destructor. @@ -63,7 +65,7 @@ class OkDialog : public Window, public gcn::ActionListener { /** * Initializes the dialog. */ - void init(const std::string &msg); + void init(const std::string &msg, gcn::ActionListener *listener); gcn::Label *userLabel; gcn::Button *okButton; |