| 26 | insertRow(newrow); |
| 27 | int oldrow = items.first()->row(); |
| 28 | foreach(QTableWidgetItem *item, items) { |
| 29 | int col = item->column(); |
| 30 | takeItem(oldrow, col); |
| 31 | setItem(newrow, col, item); |
| 32 | setCellWidget(newrow, col, cellWidget(oldrow, col)); |
| 33 | } |
| 34 | |
| 35 | removeRow(oldrow); |
| 36 | if (oldrow <= newrow) { |
nothing calls this directly
no outgoing calls
no test coverage detected