##// END OF EJS Templates
bugfxi minor. wrong return value for niceNumberEnabled
Michal Klocek -
r2315:5642c6ee36d3
parent child
Show More
@@ -251,7 +251,7 void QValueAxis::setNiceNumbersEnabled(bool enable)
251 QObject::disconnect(this,SIGNAL(rangeChanged(qreal,qreal)),this,SLOT(applyNiceNumbers()));
251 QObject::disconnect(this,SIGNAL(rangeChanged(qreal,qreal)),this,SLOT(applyNiceNumbers()));
252 QObject::disconnect(this,SIGNAL(tickCountChanged(int)),this,SLOT(applyNiceNumbers()));
252 QObject::disconnect(this,SIGNAL(tickCountChanged(int)),this,SLOT(applyNiceNumbers()));
253 }
253 }
254 d->m_niceNumbersEnabled=true;
254 d->m_niceNumbersEnabled=enable;
255 }
255 }
256
256
257 bool QValueAxis::niceNumbersEnabled() const
257 bool QValueAxis::niceNumbersEnabled() const
General Comments 0
You need to be logged in to leave comments. Login now