tools/drawMapTest/main.cpp
author nemo
Tue, 28 Oct 2014 09:56:28 -0400
changeset 10449 d108ca108ef3
parent 4425 2314bb0c433d
permissions -rw-r--r--
Update locale to latest strings. This does NOT include the string format improvement.

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

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