aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2006-08-12 23:12:31 +0000
committernyamatongwe <devnull@localhost>2006-08-12 23:12:31 +0000
commitc4e23ecc9338b7615a4a199a19b461662f7cd8fb (patch)
tree957a26e16f426fdd8a4f385ed5032d7c88abcc9b
parent74a496eb14c42873ff78ae802337dc37630dcbb7 (diff)
downloadscintilla-mirror-c4e23ecc9338b7615a4a199a19b461662f7cd8fb.tar.gz
Commented out assertion that stopped reporting of other assertions.
-rw-r--r--win32/ScintillaWin.cxx3
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);