##// END OF EJS Templates
Restored initialising of domain to zero values
Tero Ahola -
r1163:707a11810f5e
parent child
Show More
@@ -23,15 +23,15
23 23
24 24 QTCOMMERCIALCHART_BEGIN_NAMESPACE
25 25
26 Domain::Domain(QObject* parent):QObject(parent),
27 m_minX(0),
28 m_maxX(1),
29 m_minY(0),
30 m_maxY(1),
31 m_tickXCount(5),
32 m_tickYCount(5),
33 m_niceXNumbers(false),
34 m_niceYNumbers(false)
26 Domain::Domain(QObject* parent) : QObject(parent),
27 m_minX(0),
28 m_maxX(0),
29 m_minY(0),
30 m_maxY(0),
31 m_tickXCount(5),
32 m_tickYCount(5),
33 m_niceXNumbers(false),
34 m_niceYNumbers(false)
35 35 {
36 36 }
37 37
General Comments 0
You need to be logged in to leave comments. Login now