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 | 2042a1d9fc11668f154d69eb8167fcaf299e8a85 (patch) | |
tree | a5ddd2f98debd3662fca6a141f4f25aa1195739d /src | |
parent | 029c8246adda2c9a5f0bc29ad13687d8ba2cea87 (diff) | |
download | scintilla-mirror-2042a1d9fc11668f154d69eb8167fcaf299e8a85.tar.gz |
Remove line end whitespace.
Diffstat (limited to 'src')
-rw-r--r-- | src/EditView.cxx | 2 | ||||
-rw-r--r-- | src/EditView.h | 2 |
2 files changed, 2 insertions, 2 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++) { diff --git a/src/EditView.h b/src/EditView.h index 2775dac59..b136d229a 100644 --- a/src/EditView.h +++ b/src/EditView.h @@ -112,7 +112,7 @@ public: int subLine, ColourOptional background); void DrawIndentGuidesOverEmpty(Surface *surface, const EditModel &model, const ViewStyle &vsDraw, const LineLayout *ll, int line, int lineVisible, PRectangle rcLine, int xStart, int subLine); - void DrawLine(Surface *surface, const EditModel &model, const ViewStyle &vsDraw, const LineLayout *ll, int line, + void DrawLine(Surface *surface, const EditModel &model, const ViewStyle &vsDraw, const LineLayout *ll, int line, int lineVisible, int xStart, PRectangle rcLine, int subLine, DrawPhase phase); void PaintText(Surface *surfaceWindow, const EditModel &model, PRectangle rcArea, PRectangle rcClient, const ViewStyle &vsDraw); |