diff options
Diffstat (limited to 'shared/cplusplus/Lexer.h')
-rw-r--r-- | shared/cplusplus/Lexer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shared/cplusplus/Lexer.h b/shared/cplusplus/Lexer.h index 84fa410736..b6e361d3da 100644 --- a/shared/cplusplus/Lexer.h +++ b/shared/cplusplus/Lexer.h @@ -80,8 +80,8 @@ public: bool qtMocRunEnabled() const; void setQtMocRunEnabled(bool onoff); - bool objcEnabled() const; - void setObjcEnabled(bool onoff); + bool objCEnabled() const; + void setObjCEnabled(bool onoff); void scan(Token *tok); @@ -147,7 +147,7 @@ private: unsigned _scanKeywords: 1; unsigned _scanAngleStringLiteralTokens: 1; unsigned _qtMocRunEnabled: 1; - unsigned _objcEnabled: 1; + unsigned _objCEnabled: 1; }; }; unsigned _currentLine; |