aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/tableview/pixelator
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2021-06-30 11:29:53 +0200
committerUlf Hermann <ulf.hermann@qt.io>2021-06-30 14:16:55 +0200
commitb200fbe213adf2859ddebefac0be60b04389a8a6 (patch)
tree5ce163112f85264393ae3875345114d407ba39a7 /examples/quick/tableview/pixelator
parent1629fa0c6c000127d84956c0604804a896e8f9bf (diff)
Do not call QGuiApplication::exec() on an instance
It's a static method. It should be called statically. Change-Id: I15fc8948988b0a2c0a30f8699949e06c66d92fdf Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Andrei Golubev <andrei.golubev@qt.io>
Diffstat (limited to 'examples/quick/tableview/pixelator')
-rw-r--r--examples/quick/tableview/pixelator/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/quick/tableview/pixelator/main.cpp b/examples/quick/tableview/pixelator/main.cpp
index c07f43dc27..c74eac17bc 100644
--- a/examples/quick/tableview/pixelator/main.cpp
+++ b/examples/quick/tableview/pixelator/main.cpp
@@ -63,5 +63,5 @@ int main(int argc, char *argv[])
if (engine.rootObjects().isEmpty())
return -1;
- return app.exec();
+ return QGuiApplication::exec();
}