| 213 | } |
| 214 | |
| 215 | bool OutputModelPrivate::isValidIndex( const QModelIndex& idx, int currentRowCount ) const |
| 216 | { |
| 217 | return ( idx.isValid() && idx.row() >= 0 && idx.row() < currentRowCount && idx.column() == 0 ); |
| 218 | } |
| 219 | |
| 220 | OutputModelPrivate::~OutputModelPrivate() |
| 221 | { |
no test coverage detected