tools/drawMapTest/main.cpp
author koda
Sun, 26 Dec 2010 19:30:51 +0100
changeset 4701 7ed88cfc99b1
parent 4425 2314bb0c433d
permissions -rw-r--r--
restore showing a bigger icon for themes

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

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}