diff options
Diffstat (limited to 'src/gui/textdialog.cpp')
-rw-r--r-- | src/gui/textdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/textdialog.cpp b/src/gui/textdialog.cpp index 7d5b35c85..879505f64 100644 --- a/src/gui/textdialog.cpp +++ b/src/gui/textdialog.cpp @@ -48,7 +48,7 @@ TextDialog::TextDialog(const std::string &title, const std::string &msg, keyboard.setEnabled(false); Label *const textLabel = new Label(msg); - gcn::Button *const cancelButton = new Button(_("Cancel"), "CANCEL", this); + Button *const cancelButton = new Button(_("Cancel"), "CANCEL", this); place(0, 0, textLabel, 4); if (isPassword) |