diff options
author | Neil <nyamatongwe@gmail.com> | 2013-07-25 17:43:00 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-07-25 17:43:00 +1000 |
commit | f41794f988b72fd4d7ac905f939ff868ba94e991 (patch) | |
tree | fc12354ce053aef134030bb3ebceaf477c0666b4 /src/Editor.h | |
parent | 28af18d2d1226689923cadd7030d2f085253e6a3 (diff) | |
download | scintilla-mirror-f41794f988b72fd4d7ac905f939ff868ba94e991.tar.gz |
Minor changes to avoid warnings from Coverity.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h index d1879d6ec..52d38afc4 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -525,7 +525,7 @@ protected: // ScintillaBase subclass needs access to much of Editor void ContainerNeedsUpdate(int flags); void PageMove(int direction, Selection::selTypes sel=Selection::noSel, bool stuttered = false); - enum { cmSame, cmUpper, cmLower } caseMap; + enum { cmSame, cmUpper, cmLower }; virtual std::string CaseMapString(const std::string &s, int caseMapping); void ChangeCaseOfSelection(int caseMapping); void LineTranspose(); |