]> git.saurik.com Git - wxWidgets.git/commitdiff
Applying submitted wxOS2 mod
authorJulian Smart <julian@anthemion.co.uk>
Mon, 23 Oct 2000 06:26:19 +0000 (06:26 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Mon, 23 Oct 2000 06:26:19 +0000 (06:26 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8618 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/event.h

index 334cb8915ad70854ad9688533660c05c1ed5bb25..e349b45b8de9e236f3cbc352a750aee0d446e423 100644 (file)
@@ -875,8 +875,8 @@ public:
  wxEVT_PAINT_ICON
  */
 
-#if defined(__WXDEBUG__) && defined(__WXMSW__)
-    // see comments in src/msw/dcclient.cpp where g_isPainting is defined
+#if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__))
+    // see comments in src/msw|os2/dcclient.cpp where g_isPainting is defined
     extern WXDLLEXPORT int g_isPainting;
 #endif // debug
 
@@ -890,13 +890,13 @@ public:
         m_eventType = wxEVT_PAINT;
         m_id = Id;
 
-#if defined(__WXDEBUG__) && defined(__WXMSW__)
+#if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__))
         // set the internal flag for the duration of processing of WM_PAINT
         g_isPainting++;
 #endif // debug
     }
 
-#if defined(__WXDEBUG__) && defined(__WXMSW__)
+#if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__))
     ~wxPaintEvent()
     {
         g_isPainting--;