From d46106cd34c0dce5e68973b09c3f6735201accd8 Mon Sep 17 00:00:00 2001 From: Steven Edwards Date: Tue, 18 Mar 2003 00:54:09 +0000 Subject: [PATCH] disabled unneeded EH in test svn path=/trunk/; revision=4329 --- reactos/apps/tests/bitblt/bitblt.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/reactos/apps/tests/bitblt/bitblt.cpp b/reactos/apps/tests/bitblt/bitblt.cpp index f49bfb791fb..631e446a94e 100644 --- a/reactos/apps/tests/bitblt/bitblt.cpp +++ b/reactos/apps/tests/bitblt/bitblt.cpp @@ -105,7 +105,9 @@ LRESULT CALLBACK MainWndProc(HWND HWnd, UINT Msg, WPARAM WParam, { PAINTSTRUCT ps; const HDC Hdc = BeginPaint(HWnd, &ps); +#if 0 try +#endif { // // TODO: add palette support (see Chapter 9)... @@ -116,7 +118,9 @@ LRESULT CALLBACK MainWndProc(HWND HWnd, UINT Msg, WPARAM WParam, HMemDC, 0, 0, SRCCOPY); } +#if 0 catch (...) +#endif { EndPaint(HWnd, &ps); }