tools/drawMapTest/main.cpp
author sheepluva
Wed, 02 May 2012 15:33:34 +0200
changeset 6996 a0052cd32508
parent 4425 2314bb0c433d
permissions -rw-r--r--
rooms list + reorder filter chain for better performance (sorting and full-text search are now last step, not first) + automatically restore custom column widths and sort settings...

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

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