summaryrefslogtreecommitdiff
path: root/gdk/gdkpixmap.c
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2009-07-01 19:50:49 +0200
committerAlexander Larsson <alexl@redhat.com>2009-07-01 19:50:49 +0200
commit2e3866b5b2cd727fdd68e51ddb766e736ac59900 (patch)
tree4baa7e3fb861bbd2eb2e510bbdccfaf0fecc578a /gdk/gdkpixmap.c
parent0111030586706f91f3271094280ad23559c47b36 (diff)
downloadgtk+-2e3866b5b2cd727fdd68e51ddb766e736ac59900.tar.gz
Make GdkDrawable draw_drawable backwards compat
Turns out pygtk build broke due to the argument addition to draw_drawable. So, we now add a new vfunc for the new draw_drawable and are thus backwards compat.
Diffstat (limited to 'gdk/gdkpixmap.c')
-rw-r--r--gdk/gdkpixmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/gdkpixmap.c b/gdk/gdkpixmap.c
index e9f33aa847..3d29805770 100644
--- a/gdk/gdkpixmap.c
+++ b/gdk/gdkpixmap.c
@@ -203,7 +203,7 @@ gdk_pixmap_class_init (GdkPixmapObjectClass *klass)
drawable_class->draw_polygon = gdk_pixmap_draw_polygon;
drawable_class->draw_text = gdk_pixmap_draw_text;
drawable_class->draw_text_wc = gdk_pixmap_draw_text_wc;
- drawable_class->draw_drawable = gdk_pixmap_draw_drawable;
+ drawable_class->draw_drawable_with_src = gdk_pixmap_draw_drawable;
drawable_class->draw_points = gdk_pixmap_draw_points;
drawable_class->draw_segments = gdk_pixmap_draw_segments;
drawable_class->draw_lines = gdk_pixmap_draw_lines;