tools/drawMapTest/main.cpp
author Mitchell Kember <mk12360@gmail.com>
Sun, 02 Dec 2012 18:45:57 -0500
changeset 8200 90f524718f3d
parent 4425 2314bb0c433d
permissions -rw-r--r--
Move video description text underneath thumbnail to prevent the layout from resizing.

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

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