gdk_window_copy_area(drawable,gc,x,y,source_drawable,source_x,source_y,width,height) ->

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
This commit is contained in:
Mart Raudsepp
2006-04-04 13:37:31 +00:00
parent 22a3bce465
commit 62d4b5d6fe

View 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 );
}
}