| 77 | } |
| 78 | } |
| 79 | void addCols() |
| 80 | { |
| 81 | m_model.insertColumns(m_model.columnCount(), 1); |
| 82 | for (int i = 0; i < m_model.rowCount(); ++i) { |
| 83 | m_model.setData(m_model.index(i, m_model.columnCount() - 1), i); |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | private: |
| 88 | KDChart::Chart m_chart; |
nothing calls this directly
no test coverage detected