]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/dcclient.cpp
couple of minor bug fixes/enhancements (interface unchanged)
[wxWidgets.git] / src / gtk1 / dcclient.cpp
index 0352e5eb13e2ac1094de6a0e0243fc9c2483ae02..520eaa70365c9d2ef1def78e1070bb9caa934dd2 100644 (file)
@@ -545,7 +545,7 @@ void wxPaintDC::Clear(void)
 {
   if (!Ok()) return;
   
-  DestroyClippingRegion();
+//  DestroyClippingRegion();
   
   if (m_isDrawable)
   {
@@ -556,7 +556,7 @@ void wxPaintDC::Clear(void)
     int width = 0;
     int height = 0;
     GetSize( &width, &height );
-    gdk_draw_rectangle( m_window, m_brushGC, TRUE, 0, 0, width, height );
+    gdk_draw_rectangle( m_window, m_bgGC, TRUE, 0, 0, width, height );
   };
 };