]> git.saurik.com Git - wxWidgets.git/commitdiff
replaced an #ifdef __WXDEBUG__ with a wxCHECK (this is what we have it for...)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 2 Aug 2003 00:15:55 +0000 (00:15 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 2 Aug 2003 00:15:55 +0000 (00:15 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22467 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/dcclient.cpp

index 748fe83850e88f6db51901b0f21ec5b8d7fcfc22..77bc59c15c362d851ae4728824a20c2d4aaa7c39 100644 (file)
@@ -310,15 +310,11 @@ WXHDC wxPaintDC::FindDCInCache(wxWindow* win)
  * wxPaintDCEx
  */
  
  * wxPaintDCEx
  */
  
+// TODO: don't duplicate wxPaintDC code here!!
+
 wxPaintDCEx::wxPaintDCEx(wxWindow *canvas, WXHDC dc) : saveState(0)
 {
 wxPaintDCEx::wxPaintDCEx(wxWindow *canvas, WXHDC dc) : saveState(0)
 {
-#ifdef __WXDEBUG__
-    if ( !dc )
-    {
-        wxFAIL_MSG( wxT("wxPaintDCEx requires an existing device context") );
-        return;
-    }
-#endif // __WXDEBUG__
+    wxCHECK_RET( dc, wxT("wxPaintDCEx requires an existing device context") );
 
     m_canvas = canvas;
 
 
     m_canvas = canvas;