aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.h
diff options
context:
space:
mode:
authorNeil <devnull@localhost>2014-07-23 12:57:02 +1000
committerNeil <devnull@localhost>2014-07-23 12:57:02 +1000
commit3da0bc57839e659c5078f59a8c6a6562712d3cdb (patch)
treeaaf741258da68a37e087c585a9bf515d965712d0 /src/Document.h
parentbc2d85387b5c7a281d88b474e5f940be5ece7ff0 (diff)
downloadscintilla-mirror-3da0bc57839e659c5078f59a8c6a6562712d3cdb.tar.gz
Avoid shadowed names mostly in method prototypes. Turn off shadow
warnings for lexers since they may be maintained by others.
Diffstat (limited to 'src/Document.h')
-rw-r--r--src/Document.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.h b/src/Document.h
index 0f2985f89..b63962086 100644
--- a/src/Document.h
+++ b/src/Document.h
@@ -374,7 +374,7 @@ public:
void SetDefaultCharClasses(bool includeWordClass);
void SetCharClasses(const unsigned char *chars, CharClassify::cc newCharClass);
- int GetCharsOfClass(CharClassify::cc charClass, unsigned char *buffer);
+ int GetCharsOfClass(CharClassify::cc characterClass, unsigned char *buffer);
void SCI_METHOD StartStyling(int position, char mask);
bool SCI_METHOD SetStyleFor(int length, char style);
bool SCI_METHOD SetStyles(int length, const char *styles);