tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 25 Oct 2018 13:12:45 +0200
changeset 13985 fc43d63ee5a7
parent 4425 2314bb0c433d
permissions -rw-r--r--
Remove string with duplicate placeholder in sk.txt Duplicate placeholders are not supported yet.

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

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