tools/drawMapTest/main.cpp
author Xeli
Fri, 25 Nov 2011 19:32:54 +0100
changeset 6427 d2629bdee65b
parent 4425 2314bb0c433d
permissions -rw-r--r--
android: prevent the virtual keyboard from opening at the start

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

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