BuildLogViewer/main.cpp
author John Kern <johnk@symbian.org>
Thu, 12 Aug 2010 18:57:17 -0700
changeset 28 7242cf5e2cd7
parent 0 bbe0af256f1b
permissions -rwxr-xr-x
fix typo. accidently removed sql module

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

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