##// END OF EJS Templates
rename functions add() -> append()
rename functions add() -> append()

File last commit:

r519:987444b37af4
r796:4bbe1f66d4b7
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();
}