| 150 | } |
| 151 | |
| 152 | bool UserScriptModel::insertRows(int row, int count, const QModelIndex &parent) |
| 153 | { |
| 154 | beginInsertRows(parent, row, row + count - 1); |
| 155 | endInsertRows(); |
| 156 | return true; |
| 157 | } |
| 158 | |
| 159 | bool UserScriptModel::removeRows(int row, int count, const QModelIndex &parent) |
| 160 | { |
nothing calls this directly
no outgoing calls
no test coverage detected