| 274 | } |
| 275 | |
| 276 | int VarTableModel::rowCount(const QModelIndex &parent) const { |
| 277 | if (parent.isValid()) { |
| 278 | return 0; |
| 279 | } |
| 280 | return vars.size(); |
| 281 | } |
| 282 | |
| 283 | int VarTableModel::columnCount(const QModelIndex &parent) const { |
| 284 | if (parent.isValid()) { |
no outgoing calls
no test coverage detected