cmake-gui: Change install buttons to activate on clicked instead of pressed.
This matches the behavior of other buttons.
This commit is contained in:
parent
c19539c594
commit
b46a15194b
|
@ -15,11 +15,11 @@ QMacInstallDialog::QMacInstallDialog(QWidget*w)
|
||||||
{
|
{
|
||||||
this->Internals = new QMacInstallDialogInternals;
|
this->Internals = new QMacInstallDialogInternals;
|
||||||
this->Internals->setupUi(this);
|
this->Internals->setupUi(this);
|
||||||
QObject::connect(this->Internals->choosePathButton, SIGNAL(pressed()),
|
QObject::connect(this->Internals->choosePathButton, SIGNAL(clicked(bool)),
|
||||||
this, SLOT(ShowBrowser()));
|
this, SLOT(ShowBrowser()));
|
||||||
QObject::connect(this->Internals->skipInstallButton, SIGNAL(pressed()),
|
QObject::connect(this->Internals->skipInstallButton, SIGNAL(clicked(bool)),
|
||||||
this, SLOT(SkipInstall()));
|
this, SLOT(SkipInstall()));
|
||||||
QObject::connect(this->Internals->doInstallButton, SIGNAL(pressed()),
|
QObject::connect(this->Internals->doInstallButton, SIGNAL(clicked(bool)),
|
||||||
this, SLOT(DoInstall()));
|
this, SLOT(DoInstall()));
|
||||||
this->Internals->InstallPrefix->setText("/usr/bin/");
|
this->Internals->InstallPrefix->setText("/usr/bin/");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue