##// END OF EJS Templates
We have so many stupid warnings that "treat warnings as errors" flag is needed...
We have so many stupid warnings that "treat warnings as errors" flag is needed...

File last commit:

r519:987444b37af4
r609:a1ef8de9fe8d
Show More
main.cpp
11 lines | 184 B | text/x-c | CppLexer
#include <QtGui/QApplication>
#include "tablewidget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
TableWidget w;
w.show();
return a.exec();
}