Updated code to complete task id
[confmgr] / main.cpp
1 #include <QtGui/QApplication>
2 #include "mainwindow.h"
3
4 int main(int argc, char *argv[])
5 {
6     QApplication a(argc, argv);
7     MainWindow w;
8 #if defined(Q_WS_S60)
9     w.showMaximized();
10 /*
11 #elseif defined(Q_WS_MAEMO_5)
12     w.setPortraitMode();
13     w.showMaximized();
14 */
15 #else
16     w.show();
17 #endif
18
19     return a.exec();
20 }