MCPcopy Create free account
hub / github.com/KDE/labplot / toPlainString

Method toPlainString

src/3rdparty/QXlsx/source/xlsxrichstring.cpp:130–138  ·  view source on GitHub ↗

! Converts to plain text string. */

Source from the content-addressed store, hash-verified

128 Converts to plain text string.
129*/
130QString RichString::toPlainString() const
131{
132 if (isEmtpy())
133 return QString();
134 if (d->fragmentTexts.size() == 1)
135 return d->fragmentTexts[0];
136
137 return d->fragmentTexts.join(QString());
138}
139
140/*!
141 Converts to html string

Callers 3

saveToXmlFileMethod · 0.80
writeStringMethod · 0.80
loadXmlSheetDataMethod · 0.80

Calls 2

QStringClass · 0.50
sizeMethod · 0.45

Tested by

no test coverage detected