##// END OF EJS Templates
Getting rid of slice pointer in PieSliceLayout.
Getting rid of slice pointer in PieSliceLayout.

File last commit:

r486:7ab45bf9f776
r629:54034d98d5c4
Show More
main.cpp
11 lines | 174 B | text/x-c | CppLexer
#include <QtGui/QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}