tools/templates/main.cpp
author nemo
Mon, 30 Jan 2017 11:35:09 -0500
changeset 12123 4027903ff3e7
parent 359 59fbfc65fbda
permissions -rw-r--r--
updates to polish translation by alzen, also add two unlocalised string he found in the gui

#include <QApplication>

#include "mainform.h"

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