summaryrefslogtreecommitdiff
path: root/src/gui/textdialog.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-10-14 19:48:40 +0300
committerAndrei Karas <akaras@inbox.ru>2012-10-14 19:48:40 +0300
commitdb461ee046e63b7148174c40e05de76c5d7be31a (patch)
tree06e4386463e495b8e74e7dbc2bfea0da6c34413a /src/gui/textdialog.cpp
parent066488a6f4d086b57f4fe32e8799c207552cccb7 (diff)
downloadplus-db461ee046e63b7148174c40e05de76c5d7be31a.tar.gz
plus-db461ee046e63b7148174c40e05de76c5d7be31a.tar.bz2
plus-db461ee046e63b7148174c40e05de76c5d7be31a.tar.xz
plus-db461ee046e63b7148174c40e05de76c5d7be31a.zip
Replace gcn::Button to Button in all classes.
Diffstat (limited to 'src/gui/textdialog.cpp')
-rw-r--r--src/gui/textdialog.cpp2
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)