##// END OF EJS Templates
Added few properties to QAbstractAxis. Some are still missing. Its needs to be decided how the Brush and Pen should be supported
Added few properties to QAbstractAxis. Some are still missing. Its needs to be decided how the Brush and Pen should be supported

File last commit:

r2132:45eed4d8b56a
r2203:edb022f7374a
Show More
main.cpp
11 lines | 174 B | text/x-c | CppLexer
ferdek
Simple UI testing added using mago(LDTP):...
r2132 #include <QtGui/QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}