diff options
author | Neil <nyamatongwe@gmail.com> | 2024-08-22 08:53:16 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2024-08-22 08:53:16 +1000 |
commit | f61756ccb21fdd1893e13c1528fe04cfce4a7c6e (patch) | |
tree | 1caf8d84f5dbfe0c303731902b2d287717d0cfdf /src/Editor.h | |
parent | 5e7099a462492f7e0c8528a7f71049543d505ec8 (diff) | |
download | scintilla-mirror-f61756ccb21fdd1893e13c1528fe04cfce4a7c6e.tar.gz |
Feature [feature-requests:#1524]. Use same name in declaration and definition.
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 e42f36573..0cfdaf64e 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -505,7 +505,7 @@ protected: // ScintillaBase subclass needs access to much of Editor virtual int KeyDefault(Scintilla::Keys /* key */, Scintilla::KeyMod /*modifiers*/); int KeyDownWithModifiers(Scintilla::Keys key, Scintilla::KeyMod modifiers, bool *consumed); - void Indent(bool forwards, bool lineTab); + void Indent(bool forwards, bool lineIndent); virtual std::unique_ptr<CaseFolder> CaseFolderForEncoding(); Sci::Position FindText(Scintilla::uptr_t wParam, Scintilla::sptr_t lParam); |