##// END OF EJS Templates
minor code review fixes
sauimone -
r759:ea8e9f62638e
parent child
Show More
@@ -245,8 +245,7 void Axis::setLayout(QVector<qreal>& layout)
245
245
246 if (diff>0) {
246 if (diff>0) {
247 deleteItems(diff);
247 deleteItems(diff);
248 }
248 } else if (diff<0) {
249 else if(diff<0) {
250 createItems(-diff);
249 createItems(-diff);
251 }
250 }
252
251
@@ -327,8 +327,6 void QChartAxis::setMax(qreal max)
327 */
327 */
328 void QChartAxis::setRange(qreal min, qreal max)
328 void QChartAxis::setRange(qreal min, qreal max)
329 {
329 {
330
331
332 bool changed = false;
330 bool changed = false;
333 if(m_min!=min) {
331 if (m_min != min) {
334 m_min=min;
332 m_min = min;
1 NO CONTENT: modified file
NO CONTENT: modified file
General Comments 0
You need to be logged in to leave comments. Login now