Adding dummy qt app - base of podcatcher for QT.
#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();
}