##// END OF EJS Templates
Add animations to pie. Works but has some visual issues when adding slices.
Add animations to pie. Works but has some visual issues when adding slices.

File last commit:

r519:987444b37af4
r618:249071e508d1
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();
}