tools/templates/main.cpp
author sheepluva
Sun, 21 Dec 2014 21:48:13 +0100
changeset 10699 3d1eb6a66ba7
parent 359 59fbfc65fbda
permissions -rw-r--r--
german translation update, mostly just adding wuzzy's suggested strings

#include <QApplication>

#include "mainform.h"

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