summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/widgets-tutorial/notepad/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/snippets/widgets-tutorial/notepad/main.cpp')
-rw-r--r--doc/src/snippets/widgets-tutorial/notepad/main.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/snippets/widgets-tutorial/notepad/main.cpp b/doc/src/snippets/widgets-tutorial/notepad/main.cpp
index 81c8c20d3..5a76f0255 100644
--- a/doc/src/snippets/widgets-tutorial/notepad/main.cpp
+++ b/doc/src/snippets/widgets-tutorial/notepad/main.cpp
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2016 The Qt Company Ltd.
+** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the documentation of the Qt Toolkit.
@@ -59,17 +59,17 @@ int main(int argc, char *argv[])
{
//! [2]
//! [3]
- QApplication a(argc, argv);
+ QApplication EditorApp(argc, argv);
//! [3]
//! [4]
- Notepad w;
+ Notepad Editor;
//! [4]
//! [5]
- w.show();
+ Editor.show();
//! [5]
//! [6]
- return a.exec();
+ return EditorApp.exec();
//! [6]
}
//! [all]