~bhdouglass/ubuntu-touch-tweak-tool/fix-disappearing-options

« back to all changes in this revision

Viewing changes to src/app/main.cpp

  • Committer: Stefano Verzegnassi
  • Date: 2016-04-16 17:04:08 UTC
  • Revision ID: stefano92.100@gmail.com-20160416170408-t0ck3hoi0qifmehw
Stable codebase for 0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <QtQml>
25
25
 
26
26
#include <QDebug>
 
27
#include <QElapsedTimer>
27
28
 
28
29
#include "config.h"
29
30
 
46
47
 
47
48
int main(int argc, char *argv[])
48
49
{
 
50
    QElapsedTimer initTimer;
 
51
    initTimer.start();
 
52
 
49
53
    QGuiApplication app(argc, argv);
50
54
    QQuickView view;
51
55
 
67
71
    else
68
72
        view.show();
69
73
 
 
74
    qDebug() << "App required" << initTimer.elapsed() << "msec to be initialised.";
 
75
 
70
76
    return app.exec();
71
77
}