| 280 | } |
| 281 | |
| 282 | void SharedStrings::readPlainStringPart(QXmlStreamReader &reader, RichString &richString) |
| 283 | { |
| 284 | Q_ASSERT(reader.name() == QLatin1String("t")); |
| 285 | |
| 286 | //QXmlStreamAttributes attributes = reader.attributes(); |
| 287 | |
| 288 | // NOTICE: CHECK POINT |
| 289 | QString text = reader.readElementText(); |
| 290 | richString.addFragment(text, Format()); |
| 291 | } |
| 292 | |
| 293 | Format SharedStrings::readRichStringPart_rPr(QXmlStreamReader &reader) |
| 294 | { |
nothing calls this directly
no test coverage detected