tools/drawMapTest/main.cpp
author sheepluva
Mon, 13 Jan 2014 19:34:39 +0100
changeset 9979 710e0f92c2ab
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix missing escape for usernick used in regexp

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

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