tools/templates/main.cpp
author koda
Sun, 20 Jan 2013 23:03:27 +0100
changeset 8411 cb371dac50c0
parent 359 59fbfc65fbda
permissions -rw-r--r--
reuse the same words with tr() and .arg() in bandialog

#include <QApplication>

#include "mainform.h"

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