tools/templates/main.cpp
author nemo
Sat, 27 Apr 2013 17:02:26 -0400
changeset 8940 181ea27122da
parent 359 59fbfc65fbda
permissions -rw-r--r--
This is something we need to check in all translations. Occasionally the source phrase ends w/ a space. Need to make sure translations take this into account.

#include <QApplication>

#include "mainform.h"

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