diff options
| author | Marc Mutz <[email protected]> | 2020-05-07 15:22:52 +0200 | 
|---|---|---|
| committer | Marc Mutz <[email protected]> | 2020-05-11 09:02:44 +0000 | 
| commit | 219e7bafa278792f7bde110d24333fb60b555c12 (patch) | |
| tree | 46b9f9f69552cc7ee2f39e01f846d285c526474a /src/gui/text/qtextodfwriter.cpp | |
| parent | 9e56d28663b7df82882d2d0dcc72f3a48bcc6cf9 (diff) | |
QtGui: fix deprecated QChar conversions
Conversions from non-char-types to QChar are going to be deprecated.
Use QChar::fromUcs2(), fromUcs4(), QLatin1Char(), or convert the
constructor argument to char16_t.
Change-Id: Ib45ebd5560aa3a2bc460037ab09773607485c6e2
Reviewed-by: Volker Hilsheimer <[email protected]>
Diffstat (limited to 'src/gui/text/qtextodfwriter.cpp')
| -rw-r--r-- | src/gui/text/qtextodfwriter.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/text/qtextodfwriter.cpp b/src/gui/text/qtextodfwriter.cpp index 1b01284984b..6e729cad287 100644 --- a/src/gui/text/qtextodfwriter.cpp +++ b/src/gui/text/qtextodfwriter.cpp @@ -349,7 +349,7 @@ void QTextOdfWriter::writeBlock(QXmlStreamWriter &writer, const QTextBlock &bloc          writer.writeStartElement(textNS, QString::fromLatin1("span"));          QString fragmentText = frag.fragment().text(); -        if (fragmentText.length() == 1 && fragmentText[0] == QChar(0xFFFC)) { // its an inline character. +        if (fragmentText.length() == 1 && fragmentText[0] == u'\xFFFC') { // its an inline character.              writeInlineCharacter(writer, frag.fragment());              writer.writeEndElement(); // span              continue;  | 
