tools/drawMapTest/main.cpp
author nemo
Fri, 08 Mar 2013 08:31:34 -0500
changeset 8693 ab42f868b1c3
parent 4425 2314bb0c433d
permissions -rw-r--r--
*sigh* hopefully there aren't any more of these. add missing tr() to button text

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

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