diff options
author | nyamatongwe <devnull@localhost> | 2012-07-17 20:43:12 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2012-07-17 20:43:12 +1000 |
commit | 4a17ff24ea602ff3965fcf44534cba67d1d06db2 (patch) | |
tree | 4f1670dbfd548e0b387611d1153e6d6761589596 | |
parent | 6fb1f1659c965bf963637dc9e0de38ff2607734a (diff) | |
download | scintilla-mirror-4a17ff24ea602ff3965fcf44534cba67d1d06db2.tar.gz |
Remove debug statements.
-rw-r--r-- | win32/ScintillaWin.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index 2caa685a1..f33cc83eb 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -587,11 +587,6 @@ LRESULT ScintillaWin::WndPaint(uptr_t wParam) { rcPaint = PRectangle(pps->rcPaint.left, pps->rcPaint.top, pps->rcPaint.right, pps->rcPaint.bottom); PRectangle rcClient = GetClientRectangle(); paintingAllText = rcPaint.Contains(rcClient); - if (paintingAllText) { - //Platform::DebugPrintf("Performing full text paint\n"); - } else { - //Platform::DebugPrintf("Performing partial paint %d .. %d\n", rcPaint.top, rcPaint.bottom); - } Paint(surfaceWindow, rcPaint); surfaceWindow->Release(); HRESULT hr = pRenderTarget->EndDraw(); |