]> git.saurik.com Git - wxWidgets.git/commitdiff
gdk_window_copy_area(drawable,gc,x,y,source_drawable,source_x,source_y,width,height) ->
authorMart Raudsepp <leio@gentoo.org>
Tue, 4 Apr 2006 13:37:31 +0000 (13:37 +0000)
committerMart Raudsepp <leio@gentoo.org>
Tue, 4 Apr 2006 13:37:31 +0000 (13:37 +0000)
gdk_draw_pixmap(drawable,gc,source_drawable,source_x,source_y,x,y,width,height)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38544 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/dcclient.cpp

index 57bce1de01792da31df70cb807fceb36d7fc4fa1..06fd035e963bfef08983f171a360798311e06e49 100644 (file)
@@ -1466,9 +1466,10 @@ bool wxWindowDC::DoBlit( wxCoord xdest, wxCoord ydest,
 
             // copy including child window contents
             gdk_gc_set_subwindow( m_penGC, GDK_INCLUDE_INFERIORS );
-            gdk_window_copy_area( m_window, m_penGC, xx, yy,
-                                  srcDC->GetWindow(),
-                                  xsrc, ysrc, width, height );
+            gdk_draw_pixmap( m_window, m_penGC,
+                             srcDC->GetWindow(),
+                             xsrc, ysrc, xx, yy,
+                             width, height );
             gdk_gc_set_subwindow( m_penGC, GDK_CLIP_BY_CHILDREN );
         }
     }