summaryrefslogtreecommitdiffstats
path: root/weather-qml/build/main.cpp
blob: 9e3d7adb1ff72cb47391b63869380ed97586a44b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <QApplication>

#include "mainwindow.h"


int main(int argc, char **argv)
{
    QApplication app(argc, argv);

    MainWindow view;

#if defined(Q_OS_SYMBIAN) || defined(Q_WS_MAEMO_5)
    view.showFullScreen();
#else
    view.show();
#endif

    return app.exec();
}