]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/overlay.cpp
correct hhp2cached path
[wxWidgets.git] / src / mac / carbon / overlay.cpp
index 7031ebf5969d7e1af2eff951cc6487aff20cd868..3ae300276a61320deb9512f375785042212fdd86 100644 (file)
@@ -149,7 +149,7 @@ void wxOverlayImpl::EndDrawing( wxDC* dc)
     wxGCDCImpl *win_impl = wxDynamicCast(impl,wxGCDCImpl);
     if (win_impl)
         win_impl->SetGraphicsContext(NULL);
-        
+
     CGContextFlush( m_overlayContext );
 }
 
@@ -166,7 +166,10 @@ void wxOverlayImpl::Reset()
     {
 #ifndef __LP64__
         OSStatus err = QDEndCGContext(GetWindowPort(m_overlayWindow), &m_overlayContext);
-        wxASSERT_MSG(  err == noErr , _("Couldn't end the context on the overlay window") );
+        if ( err != noErr )
+        {
+            wxFAIL_MSG("Couldn't end the context on the overlay window");
+        }
 #endif
         m_overlayContext = NULL ;
     }