diff options
author | Neil <nyamatongwe@gmail.com> | 2014-07-24 12:49:53 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-07-24 12:49:53 +1000 |
commit | a38715eb76de60432e14d0a1aea2e9a181ef42b4 (patch) | |
tree | 6d4ed328e373a7e8b5ef9bdaa6a124cf895b524b /src/EditView.cxx | |
parent | b9c640484059259744bbdca0dfb0a3f070f46eec (diff) | |
download | scintilla-mirror-a38715eb76de60432e14d0a1aea2e9a181ef42b4.tar.gz |
Remove line end whitespace.
Diffstat (limited to 'src/EditView.cxx')
-rw-r--r-- | src/EditView.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/EditView.cxx b/src/EditView.cxx index 76e54faac..af8372a51 100644 --- a/src/EditView.cxx +++ b/src/EditView.cxx @@ -1257,7 +1257,7 @@ static void DrawEdgeLine(Surface *surface, const ViewStyle &vsDraw, const LineLa } // Draw underline mark as part of background if not transparent -static void DrawMarkUnderline(Surface *surface, const EditModel &model, const ViewStyle &vsDraw, +static void DrawMarkUnderline(Surface *surface, const EditModel &model, const ViewStyle &vsDraw, int line, PRectangle rcLine) { int marks = model.pdoc->GetMark(line); for (int markBit = 0; (markBit < 32) && marks; markBit++) { |