podcatcher_qt/src/main.cpp
author mapo
Mon, 23 Aug 2010 21:16:31 +0200
branchpodcatcher_qt_symbian4
changeset 217 b15683f9e989
parent 216 1f5e22508b46
permissions -rw-r--r--
Added change to pro file so that engine bld.inf is included.

#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();
}