diff options
Diffstat (limited to 'src/gui/ok_dialog.cpp')
-rw-r--r-- | src/gui/ok_dialog.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/gui/ok_dialog.cpp b/src/gui/ok_dialog.cpp index 8d2ebc23..2f3f21c5 100644 --- a/src/gui/ok_dialog.cpp +++ b/src/gui/ok_dialog.cpp @@ -33,7 +33,7 @@ OkDialog::OkDialog(const std::string &title, const std::string &msg, Window(title, true, parent) { gcn::Label *textLabel = new gcn::Label(msg); - gcn::Button *okButton = new Button("Ok"); + gcn::Button *okButton = new Button("Ok", "ok", this); int w = textLabel->getWidth() + 20; int h = textLabel->getHeight() + 25 + okButton->getHeight(); @@ -47,9 +47,6 @@ OkDialog::OkDialog(const std::string &title, const std::string &msg, okButton->setPosition((w - okButton->getWidth()) / 2, h - 5 - okButton->getHeight()); - okButton->setEventId("ok"); - okButton->addActionListener(this); - add(textLabel); add(okButton); |