Add new row with one value @input: - value - value that is supposed to be written to the new row
| 22 | // @input: |
| 23 | // - value - value that is supposed to be written to the new row |
| 24 | void StringData::addRow(const QString& value) { |
| 25 | m_values << (QList<QString>() << value); |
| 26 | } |
| 27 | |
| 28 | // Add new row with specified values (as strings) |
| 29 | // @input: |
no outgoing calls