diff options
| author | hjk <hjk@qt.io> | 2020-06-15 17:39:32 +0200 |
|---|---|---|
| committer | hjk <hjk@qt.io> | 2020-06-16 11:57:07 +0000 |
| commit | 328c0cf809a437a9875e485d2da12a2da22cd11b (patch) | |
| tree | 31ec25b0cf585e4420ca234bb06a9c5b946609a5 /src/plugins/cpptools/cpptoolsreuse.h | |
| parent | 361b80cb9b3f4d3cb2d10df5d4e8f3a46447b17b (diff) | |
| download | qt-creator-328c0cf809a437a9875e485d2da12a2da22cd11b.tar.gz | |
CppTool: Avoid a use of QStringRef
Change-Id: I2a82bad7d91e059915526f0cf7b89f0d8367463a
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/cpptools/cpptoolsreuse.h')
| -rw-r--r-- | src/plugins/cpptools/cpptoolsreuse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/cpptoolsreuse.h b/src/plugins/cpptools/cpptoolsreuse.h index afab4a4684..00472979b0 100644 --- a/src/plugins/cpptools/cpptoolsreuse.h +++ b/src/plugins/cpptools/cpptoolsreuse.h @@ -52,7 +52,7 @@ namespace CppTools { void CPPTOOLS_EXPORT moveCursorToEndOfIdentifier(QTextCursor *tc); void CPPTOOLS_EXPORT moveCursorToStartOfIdentifier(QTextCursor *tc); -bool CPPTOOLS_EXPORT isQtKeyword(const QStringRef &text); +bool CPPTOOLS_EXPORT isQtKeyword(QStringView text); bool CPPTOOLS_EXPORT isValidAsciiIdentifierChar(const QChar &ch); bool CPPTOOLS_EXPORT isValidFirstIdentifierChar(const QChar &ch); |
