tools/drawMapTest/main.cpp
author sheepluva
Sun, 18 Sep 2011 21:06:09 +0200
branch0.9.16
changeset 5959 2e5182c5617a
parent 4425 2314bb0c433d
permissions -rw-r--r--
another fix for a popup window that had no style

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

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