main.cpp
author jake
Tue, 22 Jun 2010 16:28:13 +0300
changeset 2 0c23d71853fe
parent 0 b856a9924bbc
permissions -rw-r--r--
added copying of two png images into publishercreator.cpp

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

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
#if defined(Q_WS_S60)
    w.showMaximized();
#else
    w.show();
#endif
    return a.exec();
}