tools/drawMapTest/main.cpp
author nemo
Wed, 09 Feb 2011 23:26:01 -0500
changeset 4938 0985edac2ad7
parent 4425 2314bb0c433d
permissions -rw-r--r--
use ctrl instead of alt to avoid colliding with linux window positioning

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

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