diff options
author | nyamatongwe <unknown> | 2003-02-15 09:14:43 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2003-02-15 09:14:43 +0000 |
commit | 1e52a735cf758f0d984486953bf6651932e22526 (patch) | |
tree | a8edf7e5d52bb1dce9915984679f59ad79cb6044 /src | |
parent | d592bff94e5803581ccbc0f2df34e8a72301c294 (diff) | |
download | scintilla-mirror-1e52a735cf758f0d984486953bf6651932e22526.tar.gz |
INdentation fix.
Diffstat (limited to 'src')
-rw-r--r-- | src/Editor.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 990429db9..9e5e76ea0 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -2268,7 +2268,7 @@ void Editor::RefreshPixMaps(Surface *surfaceWindow) { if (bufferedDraw) { if (!pixmapLine->Initialised()) { - PRectangle rcClient = GetClientRectangle(); + PRectangle rcClient = GetClientRectangle(); pixmapLine->InitPixMap(rcClient.Width(), rcClient.Height(), surfaceWindow); pixmapSelMargin->InitPixMap(vs.fixedColumnWidth, @@ -2283,7 +2283,7 @@ void Editor::Paint(Surface *surfaceWindow, PRectangle rcArea) { RefreshStyleData(); - RefreshPixMaps(surfaceWindow); + RefreshPixMaps(surfaceWindow); PRectangle rcClient = GetClientRectangle(); //Platform::DebugPrintf("Client: (%3d,%3d) ... (%3d,%3d) %d\n", |