Replace the row at index position 'row' with new row. @input: - row - index of row that should be replaced. 'row' must be a valid index position (i.e., 0 <= row < rowCount()). - value - value that is supposed to be written instead of the 'old' values
| 79 | // a valid index position (i.e., 0 <= row < rowCount()). |
| 80 | // - value - value that is supposed to be written instead of the 'old' values |
| 81 | void StringData::replaceRow(const qsizetype row, const QString& value) { |
| 82 | replaceRow(row, (QList<QString>() << value)); |
| 83 | } |
| 84 | |
| 85 | // Replace the row at index position 'row' with new row. |
| 86 | // @input: |
no outgoing calls