##// END OF EJS Templates
Fixed a bug in ChartView.axes property when no series added
Fixed a bug in ChartView.axes property when no series added

File last commit:

r2155:efb312b94196
r2300:20fb6c76ccf2
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();
}