summaryrefslogtreecommitdiffstats
path: root/examples/opengl/grabber/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/opengl/grabber/main.cpp')
-rw-r--r--examples/opengl/grabber/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/opengl/grabber/main.cpp b/examples/opengl/grabber/main.cpp
index f03543e449..be0e7b11cc 100644
--- a/examples/opengl/grabber/main.cpp
+++ b/examples/opengl/grabber/main.cpp
@@ -38,14 +38,14 @@
**
****************************************************************************/
-#include <QApplication>
-
#include "mainwindow.h"
+#include <QApplication>
+
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
- MainWindow mainWin;
- mainWin.show();
+ MainWindow window;
+ window.show();
return app.exec();
}