tools/drawMapTest/main.cpp
author sheepluva
Tue, 27 Sep 2011 16:26:57 +0200
changeset 6054 d3751a18cecb
parent 4425 2314bb0c433d
permissions -rw-r--r--
use currentItemChanged signal instead of itemSelectionChanged - since the latter is always one item behind if you hold down the mousebutton and move the cursor through the list

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

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