tools/drawMapTest/main.cpp
author Zorg <zorgiepoo@gmail.com>
Sun, 19 Jun 2011 20:55:34 -0400
changeset 5260 f50f620771ee
parent 4425 2314bb0c433d
permissions -rw-r--r--
When the password field is filled with null characters and when the user tries to edit the field, clear it.

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

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