summaryrefslogtreecommitdiff
path: root/src/gui/connectiondialog.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-10-20 00:52:01 +0300
committerAndrei Karas <akaras@inbox.ru>2012-10-20 13:55:43 +0300
commit41adf71a823f475b7f12b00e06056b778311da84 (patch)
tree55925f737e884f756d05a71238f207c03070a7ad /src/gui/connectiondialog.cpp
parent504219f9df4b9dda139dd832e263a136e51c4851 (diff)
downloadManaVerse-41adf71a823f475b7f12b00e06056b778311da84.tar.gz
ManaVerse-41adf71a823f475b7f12b00e06056b778311da84.tar.bz2
ManaVerse-41adf71a823f475b7f12b00e06056b778311da84.tar.xz
ManaVerse-41adf71a823f475b7f12b00e06056b778311da84.zip
Add palette inheritance to button class.
Diffstat (limited to 'src/gui/connectiondialog.cpp')
-rw-r--r--src/gui/connectiondialog.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/connectiondialog.cpp b/src/gui/connectiondialog.cpp
index ed8b0222d..3206fefc6 100644
--- a/src/gui/connectiondialog.cpp
+++ b/src/gui/connectiondialog.cpp
@@ -45,7 +45,8 @@ ConnectionDialog::ConnectionDialog(const std::string &text,
ProgressIndicator *const progressIndicator = new ProgressIndicator;
Label *const label = new Label(text);
- Button *const cancelButton = new Button(_("Cancel"), "cancelButton", this);
+ Button *const cancelButton = new Button(
+ this, _("Cancel"), "cancelButton", this);
place(0, 0, progressIndicator);
place(0, 1, label);