Remove the row at index position 'row'. @input: - row - index of row to remove. 'row' must be a valid index position (i.e., 0 <= row < rowCount()). Otherwise function will do nothing.
| 68 | // - row - index of row to remove. 'row' must be a valid index position |
| 69 | // (i.e., 0 <= row < rowCount()). Otherwise function will do nothing. |
| 70 | void StringData::removeRow(const qsizetype row) { |
| 71 | if (row >= 0 && row < m_values.size()) { |
| 72 | m_values.removeAt(row); |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | // Replace the row at index position 'row' with new row. |
| 77 | // @input: |