tools/templates/main.cpp
author sheepluva
Fri, 26 Oct 2012 19:38:25 +0200
changeset 7826 9f529722d61e
parent 359 59fbfc65fbda
permissions -rw-r--r--
fix for the root cause of issue #434 (previous pages being visible in the background)

#include <QApplication>

#include "mainform.h"

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