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.
| 84 | // - row - index of row to remove. 'row' must be a valid index position |
| 85 | // (i.e., 0 <= row < rowCount()). Otherwise function will do nothing. |
| 86 | void StringData::removeRow(const int& row) |
| 87 | { |
| 88 | d_ptr->m_values.removeAt(row); |
| 89 | } |
| 90 | |
| 91 | // Replace the row at index position 'row' with new row. |
| 92 | // @input: |