diff options
author | Kevin Wojniak <kainjow@kainjow.com> | 2015-01-26 15:48:57 (GMT) |
---|---|---|
committer | Clinton Stimpson <clinton@elemtech.com> | 2015-01-26 16:21:36 (GMT) |
commit | b46a15194b7cf1d7aaabf9d0b2a80651ada2e23f (patch) | |
tree | 1e5d3d8144183fc9a4d726fd0492073e25896399 /Source/QtDialog | |
parent | c19539c594c4099fd4de68c2e386347d1cb0667f (diff) | |
download | CMake-b46a15194b7cf1d7aaabf9d0b2a80651ada2e23f.zip CMake-b46a15194b7cf1d7aaabf9d0b2a80651ada2e23f.tar.gz CMake-b46a15194b7cf1d7aaabf9d0b2a80651ada2e23f.tar.bz2 |
cmake-gui: Change install buttons to activate on clicked instead of pressed.
This matches the behavior of other buttons.
Diffstat (limited to 'Source/QtDialog')
-rw-r--r-- | Source/QtDialog/QMacInstallDialog.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/QtDialog/QMacInstallDialog.cxx b/Source/QtDialog/QMacInstallDialog.cxx index 8b8c531..fa7df43 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/"); |