##// END OF EJS Templates
Updated QML donut screenshot
Updated QML donut screenshot

File last commit:

r1761:34fc5c0da098
r1856:0b0a73ba4fad
Show More
main.cpp
11 lines | 168 B | text/x-c | CppLexer
Marek Rosa
Removed QDonutGroup class. Added Donut Drill down example
r1697 #include <QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}