diff options
author | David Cole <david.cole@kitware.com> | 2011-12-16 15:15:39 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2011-12-16 15:15:39 (GMT) |
commit | ef086b5e41ac01e04fe1d7e416131b0d5939825f (patch) | |
tree | df7403e37bfb2838b72a77913068ba02cd739913 /Source/QtDialog | |
parent | 1706a7ed5b43f39dd6a8ff2f7ed7552b88463268 (diff) | |
parent | 56e04991048ff27e2af1fdcf98fc731ca59280a3 (diff) | |
download | CMake-ef086b5e41ac01e04fe1d7e416131b0d5939825f.zip CMake-ef086b5e41ac01e04fe1d7e416131b0d5939825f.tar.gz CMake-ef086b5e41ac01e04fe1d7e416131b0d5939825f.tar.bz2 |
Merge topic 'qtdialog-quit'
56e0499 QtDialog: Set Ctrl+Q as the shortcut for quitting the program.
Diffstat (limited to 'Source/QtDialog')
-rw-r--r-- | Source/QtDialog/CMakeSetupDialog.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/QtDialog/CMakeSetupDialog.cxx b/Source/QtDialog/CMakeSetupDialog.cxx index 1c058d3..338eaff 100644 --- a/Source/QtDialog/CMakeSetupDialog.cxx +++ b/Source/QtDialog/CMakeSetupDialog.cxx @@ -26,6 +26,7 @@ #include <QMimeData> #include <QUrl> #include <QShortcut> +#include <QKeySequence> #include <QMacInstallDialog.h> #include "QCMake.h" @@ -99,6 +100,7 @@ CMakeSetupDialog::CMakeSetupDialog() QObject::connect(this->DeleteCacheAction, SIGNAL(triggered(bool)), this, SLOT(doDeleteCache())); this->ExitAction = FileMenu->addAction(tr("E&xit")); + this->ExitAction->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q)); QObject::connect(this->ExitAction, SIGNAL(triggered(bool)), this, SLOT(close())); |