diff options
Diffstat (limited to 'examples/tutorials/gettingStarted/gsQt/part2/main.cpp')
-rw-r--r-- | examples/tutorials/gettingStarted/gsQt/part2/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/tutorials/gettingStarted/gsQt/part2/main.cpp b/examples/tutorials/gettingStarted/gsQt/part2/main.cpp index 40af868..9279a9d 100644 --- a/examples/tutorials/gettingStarted/gsQt/part2/main.cpp +++ b/examples/tutorials/gettingStarted/gsQt/part2/main.cpp @@ -40,9 +40,9 @@ #include <QtGui> -int main(int argv, char **args) +int main(int argc, char **argv) { - QApplication app(argv, args); + QApplication app(argc, argv); QTextEdit *textEdit = new QTextEdit; QPushButton *quitButton = new QPushButton("&Quit"); |