| 24 | static const qreal s_stepWidth = 0.1; |
| 25 | |
| 26 | Model::Model() |
| 27 | { |
| 28 | m_appendTimer.setInterval(3); |
| 29 | connect(&m_appendTimer, SIGNAL(timeout()), SLOT(appendPoint())); |
| 30 | // pre-fill some values |
| 31 | appendPoints(100); |
| 32 | } |
| 33 | |
| 34 | int Model::columnCount(const QModelIndex &parent) const |
| 35 | { |
nothing calls this directly
no outgoing calls
no test coverage detected