aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CellBuffer.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2017-04-07 17:28:01 +1000
committerNeil <nyamatongwe@gmail.com>2017-04-07 17:28:01 +1000
commitb9b6ef0c4617d99774df4b46c853469ef62cd7c1 (patch)
treec904443e3d9c224d9dd9d1fbf3ad847d06f73ee0 /src/CellBuffer.h
parent32ae171da032fbdcfc94405877a49e1d3e3b0abb (diff)
downloadscintilla-mirror-b9b6ef0c4617d99774df4b46c853469ef62cd7c1.tar.gz
Use same parameter names in declarations and definitions.
Diffstat (limited to 'src/CellBuffer.h')
-rw-r--r--src/CellBuffer.h4
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);