##// END OF EJS Templates
Fixed: chart not redrawing when logaxis's logBase value changed
Fixed: chart not redrawing when logaxis's logBase value changed

File last commit:

r2150:128c1c36c673
r2322:2741539ef9e9
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();
}