tools/drawMapTest/main.cpp
author sheepluva
Thu, 23 Jan 2014 14:18:06 +0100
changeset 10062 8ef80bd0402f
parent 4425 2314bb0c433d
permissions -rw-r--r--
turned out this blocked CJK characters too. stick to ASCII control char ban only, do NOT include UTF-8 control chars

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

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