##// END OF EJS Templates
Fixed build error in previous commit
Fixed build error in previous commit

File last commit:

r519:987444b37af4
r612:bc455d9d24c8
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();
}