##// END OF EJS Templates
combined clicked and rightclicked events of legend to one event with parameter
combined clicked and rightclicked events of legend to one event with parameter

File last commit:

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