Insert new row at index position 'row'. @input: - row - index of row. If 'row' is 0, the value will be set as first row. If 'row' is >= rowCount(), the value will be added as new last row. - value - value that is supposed to be written to the new row
| 44 | // If 'row' is >= rowCount(), the value will be added as new last row. |
| 45 | // - value - value that is supposed to be written to the new row |
| 46 | void StringData::insertRow(const qsizetype row, const QString& value) { |
| 47 | insertRow(row, (QList<QString>() << value)); |
| 48 | } |
| 49 | |
| 50 | // Insert new row at index position 'row'. |
| 51 | // @input: |