diff options
author | nyamatongwe <unknown> | 2006-08-12 23:12:31 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2006-08-12 23:12:31 +0000 |
commit | faba90313dced48f2cb9fc924113c78962d98ad9 (patch) | |
tree | 957a26e16f426fdd8a4f385ed5032d7c88abcc9b | |
parent | 404e630e8304f9735e67492c33fe1c9f76f12fe9 (diff) | |
download | scintilla-mirror-faba90313dced48f2cb9fc924113c78962d98ad9.tar.gz |
Commented out assertion that stopped reporting of other assertions.
-rw-r--r-- | win32/ScintillaWin.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index f5164c5c7..d82d87ae8 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -416,7 +416,8 @@ LRESULT ScintillaWin::WndPaint(uptr_t wParam) { bool IsOcxCtrl = (wParam != 0); // if wParam != 0, it contains // a PAINSTRUCT* from the OCX - PLATFORM_ASSERT(hRgnUpdate == NULL); + // Removed since this interferes with reporting other assertions as it occurs repeatedly + //PLATFORM_ASSERT(hRgnUpdate == NULL); hRgnUpdate = ::CreateRectRgn(0, 0, 0, 0); if (IsOcxCtrl) { pps = reinterpret_cast<PAINTSTRUCT*>(wParam); |