diff options
author | nyamatongwe <devnull@localhost> | 2003-02-15 09:14:43 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-02-15 09:14:43 +0000 |
commit | c4f0702d5cef32afdb838c15fbe25ac028b20ad0 (patch) | |
tree | a8edf7e5d52bb1dce9915984679f59ad79cb6044 /src | |
parent | 109e8f3af847b7fc2b227a32bc1de7bdd516bf5a (diff) | |
download | scintilla-mirror-c4f0702d5cef32afdb838c15fbe25ac028b20ad0.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", |