podcatcher_qt/src/main.cpp
branchpodcatcher_qt_symbian4
changeset 216 1f5e22508b46
equal deleted inserted replaced
215:1d12d96fdfb5 216:1f5e22508b46
       
     1 #include <QtGui/QApplication>
       
     2 #include "podcatcherwin.h"
       
     3 
       
     4 int main(int argc, char *argv[])
       
     5 {
       
     6     QApplication a(argc, argv);
       
     7     PodcatcherWin w;
       
     8 
       
     9 #if defined(Q_WS_S60)
       
    10     w.showMaximized();
       
    11 #else
       
    12     w.show();
       
    13 #endif
       
    14 
       
    15     return a.exec();
       
    16 }