ListElements/ModelViewList/main.cpp
changeset 42 b9716e8867f1
child 45 b23ec2b62c45
equal deleted inserted replaced
41:b56d7e268634 42:b9716e8867f1
       
     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     w.setWindowTitle("Zodiac");
       
     9 #if defined(Q_WS_S60)
       
    10     w.showMaximized();
       
    11 #else
       
    12     w.show();
       
    13 #endif
       
    14 
       
    15     return a.exec();
       
    16 }