BuildLogViewer/main.cpp
author John Kern <johnk@symbian.org>
Wed, 14 Apr 2010 10:40:46 -0700
changeset 16 e26c25b72a12
parent 0 bbe0af256f1b
permissions -rwxr-xr-x
fix the table layout looks presentable

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

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