Add new row with one value @input: - value - value that is supposed to be written to the new row
| 32 | // @input: |
| 33 | // - value - value that is supposed to be written to the new row |
| 34 | void StringData::addRow(const QString& value) |
| 35 | { |
| 36 | d_ptr->m_values << (QStringList() << value); |
| 37 | } |
| 38 | |
| 39 | // Add new row with specified values (as strings) |
| 40 | // @input: |