| 22 | static int nrOfKDChart(0); |
| 23 | |
| 24 | ModelParamVsParamPlot::ModelParamVsParamPlot( |
| 25 | QAbstractItemModel *p_sourceModel, |
| 26 | int p_column1, |
| 27 | int p_column2, |
| 28 | QObject *p_parent) |
| 29 | : QSortFilterProxyModel(p_parent) |
| 30 | , m_column1(p_column1) |
| 31 | , m_column2(p_column2) |
| 32 | { |
| 33 | setSourceModel(p_sourceModel); |
| 34 | } // ModelParamVsParamPlot::ModelParamVsParamPlot() |
| 35 | |
| 36 | int ModelParamVsParamPlot::columnCount( |
| 37 | const QModelIndex & /*p_parent*/) const |
nothing calls this directly
no outgoing calls
no test coverage detected