tools/drawMapTest/main.cpp
author sheepluva
Tue, 06 Jan 2015 19:26:25 +0100
branch0.9.21
changeset 10750 31c744824dab
parent 4425 2314bb0c433d
permissions -rw-r--r--
don't show the new, untranslated items in room state filter dropdown. do NOT merge this change back to default.

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

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