tools/templates/main.cpp
author sheepluva
Fri, 09 Sep 2011 03:04:15 +0200
changeset 5816 ceb522b0f7d5
parent 359 59fbfc65fbda
permissions -rw-r--r--
"fix" for a screen scaling problem I had after resizing to odd width number values

#include <QApplication>

#include "mainform.h"

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