tools/drawMapTest/main.cpp
author unc0rr
Thu, 04 Apr 2013 14:01:54 +0400
branch0.9.19
changeset 8791 6e3308fc2a1d
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix shortcut which is created by NSIS

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

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