summaryrefslogtreecommitdiff
path: root/src/app.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/app.cpp')
-rw-r--r--src/app.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/app.cpp b/src/app.cpp
index e6da32a..dc277cb 100644
--- a/src/app.cpp
+++ b/src/app.cpp
@@ -15,8 +15,8 @@ App *theApp;
15Settings *theSettings; 15Settings *theSettings;
16QQuickWindow *theWindow; 16QQuickWindow *theWindow;
17 17
18App::App (QObject * parent): 18App::App (QObject * parent)
19QObject (parent) 19 : QObject (parent)
20{ 20{
21 theApp = this; 21 theApp = this;
22 theSettings = new Settings (this); 22 theSettings = new Settings (this);
@@ -26,6 +26,7 @@ QObject (parent)
26 m_qrProvider = new QrImageProvider (); 26 m_qrProvider = new QrImageProvider ();
27 m_social = new SocialApp (this); 27 m_social = new SocialApp (this);
28 registerQmlTypes (); 28 registerQmlTypes ();
29 setupTray ();
29} 30}
30 31
31// theApp singleton type provider 32// theApp singleton type provider