##// END OF EJS Templates
Added missing properties and NOTIFY's to logvalue and value axes
Added missing properties and NOTIFY's to logvalue and value axes

File last commit:

r2229:bee551388900
r2319:0473979ecc50
Show More
main.cpp
11 lines | 168 B | text/x-c | CppLexer
#include <QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}