Cosmetic changes

* fix invalid graph painting - for some reasons graphs are not normed as
  expected.
* fix cppcheck warnings related to no default values
This commit is contained in:
2016-03-18 16:23:53 +03:00
parent 453d4d5149
commit 3a6033e676
2 changed files with 7 additions and 7 deletions

View File

@ -46,11 +46,11 @@ public:
private:
void storeValue(const float &value);
QGraphicsScene *m_scene = nullptr;
int m_count;
int m_count = 100;
QColor m_activeColor;
QColor m_inactiveColor;
int m_width;
int m_height;
int m_width = 100;
int m_height = 100;
// list of values which will be used to store data for graph type only
QList<float> m_values;
};