##// END OF EJS Templates
minor updates in tmstatistics.cpp
minor updates in tmstatistics.cpp

File last commit:

r69:d8815b251eb0 default
r73:b66d3d3bbd08 default
Show More
main.cpp
11 lines | 182 B | text/x-c | CppLexer
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}