diff options
Diffstat (limited to 'src/gui/confirm_dialog.h')
-rw-r--r-- | src/gui/confirm_dialog.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/confirm_dialog.h b/src/gui/confirm_dialog.h index fd220828..8f444057 100644 --- a/src/gui/confirm_dialog.h +++ b/src/gui/confirm_dialog.h @@ -59,12 +59,17 @@ class ConfirmDialog : public Window, public gcn::ActionListener { * Called when receiving actions from the widgets. */ void action(const std::string& eventId); + + gcn::Button *yesButton; + gcn::Button *noButton; private: /** * Initializes the dialog. */ void init(const std::string &msg, gcn::ActionListener *listener); + + gcn::Label *textLabel; }; #endif |