tools/drawMapTest/main.cpp
author sheepluva
Sun, 08 Dec 2013 02:43:06 +0100
changeset 9762 938d1c08d0d1
parent 4425 2314bb0c433d
permissions -rw-r--r--
disallow speech bubbles to go offscreen no tint or tail-directio adjustments for indicating it's offscreen yet though

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

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