tools/drawMapTest/main.cpp
author koda
Sun, 12 Feb 2012 18:50:22 +0100
changeset 6679 d8b98aa486a6
parent 4425 2314bb0c433d
permissions -rw-r--r--
tweaks to the value tracking slider (doesn't draw outside the superview bounds) and assign proper copyright notice to it

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}