summaryrefslogtreecommitdiffstats
path: root/example
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2013-04-17 15:57:14 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2013-04-17 15:57:14 +0200
commitd26c672958d81619b5bd8651b1b9e6200982d594 (patch)
tree6897ba108937eea07a7ea0af3ebc675dedac11ae /example
parentae721233f53276bbb5f731ab975e10b2d366872f (diff)
Some more start-up fixes and a hack for test command line options for debugging multi-process startup
Diffstat (limited to 'example')
-rw-r--r--example/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/main.cpp b/example/main.cpp
index 566adf7e9..3815848c1 100644
--- a/example/main.cpp
+++ b/example/main.cpp
@@ -7,7 +7,7 @@ int main(int argc, char **argv)
printf("main called\n");
QGuiApplication app(argc, argv);
- BlinqPage page;
+ BlinqPage page(argc, argv);
page.window()->show();
return app.exec();