diff options
author | Neil <nyamatongwe@gmail.com> | 2022-12-12 22:29:05 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2022-12-12 22:29:05 +1100 |
commit | db320f1668fceec9c625ac5ccdf9864200386f0e (patch) | |
tree | 880f8c6c58ca3c0f77e96bd8a0a2b16975f779a8 /src/Editor.cxx | |
parent | e0810b184575a5b44d09cb83493968311a9ca58f (diff) | |
download | scintilla-mirror-db320f1668fceec9c625ac5ccdf9864200386f0e.tar.gz |
Reorder arguments to drawing functions to be consistent.
Make methods private or make into functions where possible to hide more
implementation.
Reorder methods and functions so related code closer and header and
implementation match order.
Use unnamed namespace instead of static.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 9a98b470c..3bf50b09e 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -1819,7 +1819,7 @@ void Editor::Paint(Surface *surfaceWindow, PRectangle rcArea) { return; } - view.PaintText(surfaceWindow, *this, rcArea, rcClient, vs); + view.PaintText(surfaceWindow, *this, vs, rcArea, rcClient); if (horizontalScrollBarVisible && trackLineWidth && (view.lineWidthMaxSeen > scrollWidth)) { scrollWidth = view.lineWidthMaxSeen; |