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
| 57 | // If 'row' is >= rowCount(), the value will be added as new last row. |
| 58 | // - value - value that is supposed to be written to the new row |
| 59 | void StringData::insertRow(const int& row, const QString& value) |
| 60 | { |
| 61 | insertRow(row, (QStringList() << value)); |
| 62 | } |
| 63 | |
| 64 | // Insert new row at index position 'row'. |
| 65 | // @input: |