##// END OF EJS Templates
Bug fix for bar presenters. It appears that order of childItems may change. Relying on order caused crash
Bug fix for bar presenters. It appears that order of childItems may change. Relying on order caused crash

File last commit:

r26:aa0e09b6abc0
r256:bd68fc4fe7ab
Show More
dataseriedialog.h
25 lines | 451 B | text/x-c | CLexer
#ifndef DATASERIEDIALOG_H
#define DATASERIEDIALOG_H
#include <QDialog>
class QComboBox;
class DataSerieDialog : public QDialog
{
Q_OBJECT
public:
explicit DataSerieDialog(QString defaultType, QWidget *parent = 0);
signals:
void accepted(QString series, QString data);
public slots:
void accept();
private:
QComboBox *m_seriesTypeCombo;
QComboBox *m_testDataCombo;
};
#endif // DATASERIEDIALOG_H