summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAndy Shaw <andy.shaw@nokia.com>2009-07-23 09:42:55 +0200
committerAndy Shaw <andy.shaw@nokia.com>2009-07-23 09:42:55 +0200
commitbf095defcbc6f025e39aab32f2ab8102639fd0d2 (patch)
tree1363ac9054bcc7010946d06ed69abcb7b2895e85 /examples
parent708150e3a88fdc5f7c3d1998f2b5132cea264a71 (diff)
downloadqt4-tools-bf095defcbc6f025e39aab32f2ab8102639fd0d2.tar.gz
Remove the close shortcut from the example since QMdiArea provides this
Since QMdiArea provides this already via the standard keys, then we don't want to add it ourselves otherwise it triggers an ambigious shortcut on the platforms which already has CTRL+F4. Task-number: 161999 Reviewed-by: Kavindra Palaraja
Diffstat (limited to 'examples')
-rw-r--r--examples/mainwindows/mdi/mainwindow.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/mainwindows/mdi/mainwindow.cpp b/examples/mainwindows/mdi/mainwindow.cpp
index 3cb54f1d3e..9ef2caef01 100644
--- a/examples/mainwindows/mdi/mainwindow.cpp
+++ b/examples/mainwindows/mdi/mainwindow.cpp
@@ -259,7 +259,6 @@ void MainWindow::createActions()
connect(pasteAct, SIGNAL(triggered()), this, SLOT(paste()));
closeAct = new QAction(tr("Cl&ose"), this);
- closeAct->setShortcut(tr("Ctrl+F4"));
closeAct->setStatusTip(tr("Close the active window"));
connect(closeAct, SIGNAL(triggered()),
mdiArea, SLOT(closeActiveSubWindow()));