tools/templates/main.cpp
author dag10
Sun, 07 Apr 2013 19:42:02 -0400
changeset 8886 5c521d1fdd63
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fixed map preview overlap on certain locales (Fixes issue #549). Fixed overlapping of team selection widget and game cfg widget.

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}