tools/drawMapTest/main.cpp
author nemo
Fri, 14 Dec 2012 09:53:17 -0500
changeset 8290 3240f4500ac1
parent 4425 2314bb0c433d
permissions -rw-r--r--
Try to be friendlier to small screen sizes. Use 800x600 if width/height of 2/3rds is smaller than 800x600 (things don't look smaller than that size), use desktop size if it is for some reason smaller than 800x600

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

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