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
| 94 | // a valid index position (i.e., 0 <= row < rowCount()). |
| 95 | // - value - value that is supposed to be written instead of the 'old' values |
| 96 | void StringData::replaceRow(const int& row, const QString& value) |
| 97 | { |
| 98 | replaceRow(row, (QStringList() << value)); |
| 99 | } |
| 100 | |
| 101 | // Replace the row at index position 'row' with new row. |
| 102 | // @input: |