diff options
| author | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2023-11-24 09:57:27 +0100 |
|---|---|---|
| committer | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2023-11-29 13:33:00 +0100 |
| commit | 482050f841492da7511932e4aaf460b839b0d5e6 (patch) | |
| tree | 631676cb90176ab49829630c8db1d32a1be759e9 /sources/shiboken6/ApiExtractor/codesnip.cpp | |
| parent | d37c69526fdf6cf79e8c2695c19460fbb12e833f (diff) | |
shiboken6: Remove some further uses of QStringLiteral
Task-number: PYSIDE-2537
Change-Id: Ie71b17eec385b31842d6693b3492db565d479fd0
Reviewed-by: Shyamnath Premnadh <Shyamnath.Premnadh@qt.io>
Diffstat (limited to 'sources/shiboken6/ApiExtractor/codesnip.cpp')
| -rw-r--r-- | sources/shiboken6/ApiExtractor/codesnip.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/shiboken6/ApiExtractor/codesnip.cpp b/sources/shiboken6/ApiExtractor/codesnip.cpp index f79c68ca8..e2cd5eb35 100644 --- a/sources/shiboken6/ApiExtractor/codesnip.cpp +++ b/sources/shiboken6/ApiExtractor/codesnip.cpp @@ -63,7 +63,7 @@ void CodeSnipAbstract::purgeEmptyFragments() QRegularExpression CodeSnipAbstract::placeHolderRegex(int index) { - return QRegularExpression(u'%' + QString::number(index) + QStringLiteral("\\b")); + return QRegularExpression(u'%' + QString::number(index) + "\\b"_L1); } void purgeEmptyCodeSnips(QList<CodeSnip> *list) |
