##// 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:

r2254:3e008d6a7c89
r2322:2741539ef9e9
Show More
widget.h
19 lines | 232 B | text/x-c | CLexer
#ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
#include <QDir>
class Widget : public QWidget
{
Q_OBJECT
public:
Widget(QWidget *parent = 0);
~Widget();
private:
QDir m_appFolder;
};
#endif // WIDGET_H