diff options
author | Norwegian Rock Cat <qt-info@nokia.com> | 2009-05-12 11:03:20 (GMT) |
---|---|---|
committer | Norwegian Rock Cat <qt-info@nokia.com> | 2009-05-12 11:05:19 (GMT) |
commit | aecb4af947acd5e5c4a59641512269348ca97f07 (patch) | |
tree | a0e96b051e6ceae2fdd2f9019f1a086179769959 /examples/tools/settingseditor/mainwindow.cpp | |
parent | 61b7057cd2ec4688592ad5d13a55b75b18c8d8a5 (diff) | |
download | Qt-aecb4af947acd5e5c4a59641512269348ca97f07.zip Qt-aecb4af947acd5e5c4a59641512269348ca97f07.tar.gz Qt-aecb4af947acd5e5c4a59641512269348ca97f07.tar.bz2 |
Replace all instances of "Ctrl+Q" with QKeySequence::Quit.
We introduce this new enum, we should be using it.
Diffstat (limited to 'examples/tools/settingseditor/mainwindow.cpp')
-rw-r--r-- | examples/tools/settingseditor/mainwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/tools/settingseditor/mainwindow.cpp b/examples/tools/settingseditor/mainwindow.cpp index 0f48a5c..0321b55 100644 --- a/examples/tools/settingseditor/mainwindow.cpp +++ b/examples/tools/settingseditor/mainwindow.cpp @@ -122,7 +122,7 @@ void MainWindow::about() void MainWindow::createActions() { openSettingsAct = new QAction(tr("&Open Application Settings..."), this); - openSettingsAct->setShortcut(tr("Ctrl+O")); + openSettingsAct->setShortcuts(QKeySequence::Open); connect(openSettingsAct, SIGNAL(triggered()), this, SLOT(openSettings())); openIniFileAct = new QAction(tr("Open I&NI File..."), this); @@ -146,7 +146,7 @@ void MainWindow::createActions() connect(refreshAct, SIGNAL(triggered()), settingsTree, SLOT(refresh())); exitAct = new QAction(tr("E&xit"), this); - exitAct->setShortcut(tr("Ctrl+Q")); + exitAct->setShortcuts(QKeySequence::Quit); connect(exitAct, SIGNAL(triggered()), this, SLOT(close())); autoRefreshAct = new QAction(tr("&Auto-Refresh"), this); |