summaryrefslogtreecommitdiffstats
path: root/examples/itemviews/simpledommodel/mainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/itemviews/simpledommodel/mainwindow.cpp')
-rw-r--r--examples/itemviews/simpledommodel/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/itemviews/simpledommodel/mainwindow.cpp b/examples/itemviews/simpledommodel/mainwindow.cpp
index ac968998c9..73626b1d99 100644
--- a/examples/itemviews/simpledommodel/mainwindow.cpp
+++ b/examples/itemviews/simpledommodel/mainwindow.cpp
@@ -50,9 +50,9 @@ MainWindow::MainWindow() : QMainWindow(), model(0)
{
fileMenu = menuBar()->addMenu(tr("&File"));
fileMenu->addAction(tr("&Open..."), this, SLOT(openFile()),
- QKeySequence(tr("Ctrl+O")));
+ QKeySequence::Open);
fileMenu->addAction(tr("E&xit"), this, SLOT(close()),
- QKeySequence(tr("Ctrl+Q")));
+ QKeySequence::Quit);
model = new DomModel(QDomDocument(), this);
view = new QTreeView(this);