diff options
author | nyamatongwe <devnull@localhost> | 2006-08-12 23:12:31 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2006-08-12 23:12:31 +0000 |
commit | c4e23ecc9338b7615a4a199a19b461662f7cd8fb (patch) | |
tree | 957a26e16f426fdd8a4f385ed5032d7c88abcc9b | |
parent | 74a496eb14c42873ff78ae802337dc37630dcbb7 (diff) | |
download | scintilla-mirror-c4e23ecc9338b7615a4a199a19b461662f7cd8fb.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); |