tools/drawMapTest/main.cpp
author sheepluva
Wed, 17 Dec 2014 19:03:33 +0100
changeset 10689 692649e341fc
parent 4425 2314bb0c433d
permissions -rw-r--r--
change string types of speech bubbles fix to work with pas2c

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

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