diff -r 000000000000 -r bbe0af256f1b BuildLogViewer/main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/BuildLogViewer/main.cpp Fri Aug 28 15:16:29 2009 -0700 @@ -0,0 +1,10 @@ +#include +#include "mainwindow.h" + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + MainWindow w; + w.show(); + return a.exec(); +}