tools/templates/main.cpp
author sheepluva
Tue, 10 Jun 2014 07:48:08 +0200 (2014-06-10)
changeset 10264 cb4331b032f4
parent 359 59fbfc65fbda
permissions -rw-r--r--
use cScaleFactor where I incorrectly used the variable zoom in the past. i was young and needed the money
#include <QApplication>

#include "mainform.h"

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