diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-03-09 02:22:21 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-03-09 02:22:21 +0300 |
commit | aa7119314e1a33d908b98906d30be94eb116d02d (patch) | |
tree | a99092b16529937c20c6ec3a7d00d7f69eabfe35 /src/gui/windows/textselectdialog.cpp | |
parent | 0424b1383e3c07192b4493d5210b4384b5a69a75 (diff) | |
download | plus-aa7119314e1a33d908b98906d30be94eb116d02d.tar.gz plus-aa7119314e1a33d908b98906d30be94eb116d02d.tar.bz2 plus-aa7119314e1a33d908b98906d30be94eb116d02d.tar.xz plus-aa7119314e1a33d908b98906d30be94eb116d02d.zip |
Add skin parameter to all button constructors.
Diffstat (limited to 'src/gui/windows/textselectdialog.cpp')
-rw-r--r-- | src/gui/windows/textselectdialog.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/gui/windows/textselectdialog.cpp b/src/gui/windows/textselectdialog.cpp index 630e16418..9991a5754 100644 --- a/src/gui/windows/textselectdialog.cpp +++ b/src/gui/windows/textselectdialog.cpp @@ -87,11 +87,16 @@ void TextSelectDialog::postInit() mSelectButton = new Button(this, mSelectButtonName, "select", + BUTTON_SKIN, this); if (mAllowQuit == AllowQuit_true) { - // TRANSLATORS: sell dialog button - mQuitButton = new Button(this, _("Quit"), "quit", this); + mQuitButton = new Button(this, + // TRANSLATORS: sell dialog button + _("Quit"), + "quit", + BUTTON_SKIN, + this); } mSelectButton->setEnabled(false); |