diff options
author | Neil <nyamatongwe@gmail.com> | 2017-04-07 17:28:01 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-04-07 17:28:01 +1000 |
commit | b9b6ef0c4617d99774df4b46c853469ef62cd7c1 (patch) | |
tree | c904443e3d9c224d9dd9d1fbf3ad847d06f73ee0 /src/CellBuffer.h | |
parent | 32ae171da032fbdcfc94405877a49e1d3e3b0abb (diff) | |
download | scintilla-mirror-b9b6ef0c4617d99774df4b46c853469ef62cd7c1.tar.gz |
Use same parameter names in declarations and definitions.
Diffstat (limited to 'src/CellBuffer.h')
-rw-r--r-- | src/CellBuffer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CellBuffer.h b/src/CellBuffer.h index 60842ba95..f0b77e162 100644 --- a/src/CellBuffer.h +++ b/src/CellBuffer.h @@ -90,7 +90,7 @@ public: UndoHistory(); ~UndoHistory(); - const char *AppendAction(actionType at, Sci::Position position, const char *data, Sci::Position length, bool &startSequence, bool mayCoalesce=true); + const char *AppendAction(actionType at, Sci::Position position, const char *data, Sci::Position lengthData, bool &startSequence, bool mayCoalesce=true); void BeginUndoAction(); void EndUndoAction(); @@ -173,7 +173,7 @@ public: /// Setting styles for positions outside the range of the buffer is safe and has no effect. /// @return true if the style of a character is changed. bool SetStyleAt(Sci::Position position, char styleValue); - bool SetStyleFor(Sci::Position position, Sci::Position length, char styleValue); + bool SetStyleFor(Sci::Position position, Sci::Position lengthStyle, char styleValue); const char *DeleteChars(Sci::Position position, Sci::Position deleteLength, bool &startSequence); |