diff options
author | Nikolai Kosjar <nikolai.kosjar@digia.com> | 2014-05-08 09:48:27 -0400 |
---|---|---|
committer | Nikolai Kosjar <nikolai.kosjar@digia.com> | 2014-05-23 14:33:34 +0200 |
commit | bb7da966b801a2884cd7cf47f640bf7ac7d775df (patch) | |
tree | a4a74a15edb1603e7a20a306bd0246665c45e88b /src/plugins/cpptools/cpptoolsreuse.h | |
parent | dd61ed3345a70ef46fb38a17de36ac2bb1627081 (diff) | |
download | qt-creator-bb7da966b801a2884cd7cf47f640bf7ac7d775df.tar.gz |
Cpp{Tools,Editor}: Respect multi-QChar code points when handling identifiers
* Consolidate code dealing with C++ identifiers into cpptoolsreuse.h
* Handle code points that are represented with two QChars
Change-Id: I4fb4435aa539f65d88598cac0b50629f33f32440
Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
Diffstat (limited to 'src/plugins/cpptools/cpptoolsreuse.h')
-rw-r--r-- | src/plugins/cpptools/cpptoolsreuse.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/cpptools/cpptoolsreuse.h b/src/plugins/cpptools/cpptoolsreuse.h index a0156a8093..87b1e5eb3e 100644 --- a/src/plugins/cpptools/cpptoolsreuse.h +++ b/src/plugins/cpptools/cpptoolsreuse.h @@ -32,6 +32,7 @@ #include "cpptools_global.h" +QT_FORWARD_DECLARE_CLASS(QChar) QT_FORWARD_DECLARE_CLASS(QTextCursor) QT_FORWARD_DECLARE_CLASS(QStringRef) @@ -48,6 +49,9 @@ void CPPTOOLS_EXPORT moveCursorToStartOfIdentifier(QTextCursor *tc); bool CPPTOOLS_EXPORT isOwnershipRAIIType(CPlusPlus::Symbol *symbol, const CPlusPlus::LookupContext &context); +bool CPPTOOLS_EXPORT isValidAsciiIdentifierChar(const QChar &ch); +bool CPPTOOLS_EXPORT isValidFirstIdentifierChar(const QChar &ch); +bool CPPTOOLS_EXPORT isValidIdentifierChar(const QChar &ch); bool CPPTOOLS_EXPORT isValidIdentifier(const QString &s); bool CPPTOOLS_EXPORT isQtKeyword(const QStringRef &text); |