diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-20 00:52:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-20 13:55:43 +0300 |
commit | 41adf71a823f475b7f12b00e06056b778311da84 (patch) | |
tree | 55925f737e884f756d05a71238f207c03070a7ad /src/gui/connectiondialog.cpp | |
parent | 504219f9df4b9dda139dd832e263a136e51c4851 (diff) | |
download | plus-41adf71a823f475b7f12b00e06056b778311da84.tar.gz plus-41adf71a823f475b7f12b00e06056b778311da84.tar.bz2 plus-41adf71a823f475b7f12b00e06056b778311da84.tar.xz plus-41adf71a823f475b7f12b00e06056b778311da84.zip |
Add palette inheritance to button class.
Diffstat (limited to 'src/gui/connectiondialog.cpp')
-rw-r--r-- | src/gui/connectiondialog.cpp | 3 |
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); |