tools/drawMapTest/main.cpp
author unc0rr
Thu, 10 Oct 2013 15:05:51 +0400
changeset 9511 1be565d7b4b7
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fill PageEditTeam containers only when it is actually required: - Reduces frontend startup time for 20-25% on my test machine - Also reduces memory usage when the page hasn't been shown

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

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