podcatcher_qt/src/main.cpp
author larspson
Wed, 13 Oct 2010 14:09:08 +0200
branchpodcatcher_qt_symbian4
changeset 230 a3772671c3a7
parent 216 1f5e22508b46
permissions -rw-r--r--
Remove projectfiles. Update pro file with added include paths for inc and moc

#include <QtGui/QApplication>
#include "podcatcherwin.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    PodcatcherWin w;

#if defined(Q_WS_S60)
    w.showMaximized();
#else
    w.show();
#endif

    return a.exec();
}