summaryrefslogtreecommitdiff
path: root/Source/QtDialog/QMacInstallDialog.cxx
diff options
context:
space:
mode:
authorKevin Wojniak <kainjow@kainjow.com>2015-01-26 07:48:57 -0800
committerClinton Stimpson <clinton@elemtech.com>2015-01-26 09:21:36 -0700
commitb46a15194b7cf1d7aaabf9d0b2a80651ada2e23f (patch)
tree1e5d3d8144183fc9a4d726fd0492073e25896399 /Source/QtDialog/QMacInstallDialog.cxx
parentc19539c594c4099fd4de68c2e386347d1cb0667f (diff)
downloadcmake-b46a15194b7cf1d7aaabf9d0b2a80651ada2e23f.tar.gz
cmake-gui: Change install buttons to activate on clicked instead of pressed.
This matches the behavior of other buttons.
Diffstat (limited to 'Source/QtDialog/QMacInstallDialog.cxx')
-rw-r--r--Source/QtDialog/QMacInstallDialog.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/QtDialog/QMacInstallDialog.cxx b/Source/QtDialog/QMacInstallDialog.cxx
index 8b8c5319f2..fa7df43399 100644
--- a/Source/QtDialog/QMacInstallDialog.cxx
+++ b/Source/QtDialog/QMacInstallDialog.cxx
@@ -15,11 +15,11 @@ QMacInstallDialog::QMacInstallDialog(QWidget*w)
{
this->Internals = new QMacInstallDialogInternals;
this->Internals->setupUi(this);
- QObject::connect(this->Internals->choosePathButton, SIGNAL(pressed()),
+ QObject::connect(this->Internals->choosePathButton, SIGNAL(clicked(bool)),
this, SLOT(ShowBrowser()));
- QObject::connect(this->Internals->skipInstallButton, SIGNAL(pressed()),
+ QObject::connect(this->Internals->skipInstallButton, SIGNAL(clicked(bool)),
this, SLOT(SkipInstall()));
- QObject::connect(this->Internals->doInstallButton, SIGNAL(pressed()),
+ QObject::connect(this->Internals->doInstallButton, SIGNAL(clicked(bool)),
this, SLOT(DoInstall()));
this->Internals->InstallPrefix->setText("/usr/bin/");