diff options
author | Sona Kurazyan <sona.kurazyan@qt.io> | 2022-03-21 13:16:05 +0100 |
---|---|---|
committer | Sona Kurazyan <sona.kurazyan@qt.io> | 2022-04-20 10:45:10 +0200 |
commit | 2ee67a6709b9f829c5ec36b8f3e69d415f696cec (patch) | |
tree | 85844a2bb8d091dbbce5309680f0809f16ef48ed /src/qdoc/doc.cpp | |
parent | 7b2aade5ca4798e180aca7daf9033351b37653e5 (diff) | |
download | qttools-2ee67a6709b9f829c5ec36b8f3e69d415f696cec.tar.gz |
Replace uses of deprecated _qs with _s
Task-number: QTBUG-101408
Change-Id: If6f25418bf3af66ad9bde2dba8bf529b8d202f83
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'src/qdoc/doc.cpp')
-rw-r--r-- | src/qdoc/doc.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/qdoc/doc.cpp b/src/qdoc/doc.cpp index cae8b0242..9b023dacd 100644 --- a/src/qdoc/doc.cpp +++ b/src/qdoc/doc.cpp @@ -40,6 +40,8 @@ QT_BEGIN_NAMESPACE +using namespace Qt::StringLiterals; + DocUtilities &Doc::m_utilities = DocUtilities::instance(); /*! @@ -72,11 +74,11 @@ Doc::Doc(const Location &start_loc, const Location &end_loc, const QString &sour parser.parse(source, m_priv, metaCommandSet, topics); if (Config::instance().getAtomsDump()) { - start_loc.information(u"==== Atoms Structure for block comment starting at %1 ===="_qs.arg( + start_loc.information(u"==== Atoms Structure for block comment starting at %1 ===="_s.arg( start_loc.toString())); body().dump(); end_loc.information( - u"==== Ending atoms Structure for block comment ending at %1 ===="_qs.arg( + u"==== Ending atoms Structure for block comment ending at %1 ===="_s.arg( end_loc.toString())); } } |