##// END OF EJS Templates
Updates axis drawing code...
Updates axis drawing code * fixes barcategory axis hadling when zoom/scroll * blocks removing grind line when corespoding label overlap * adds comments for geometry functions * updates charviewer barcategories axis examples * adds PreferedSize handling to layout manager

File last commit:

r2132:45eed4d8b56a
r2133:8c175959daec
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();
}