diff options
author | Benjamin Otte <otte@redhat.com> | 2010-08-28 23:51:58 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-09-26 15:11:32 +0200 |
commit | e316157671d0ab67dc9dd7de8f961df80a84f6db (patch) | |
tree | ac87e0b3bffe97c6f4a2b634a93c639b04306578 /gdk/gdkpixbuf.h | |
parent | a9f198082ae3f4de921c9f1e66cac6509902f863 (diff) | |
download | gtk+-e316157671d0ab67dc9dd7de8f961df80a84f6db.tar.gz |
API: gdk_pixbuf_get_from_drawable() => gdk_pixbuf_get_from_window()
The Colormap argument needed to be removed, so the renaming is just a
side effect.
Diffstat (limited to 'gdk/gdkpixbuf.h')
-rw-r--r-- | gdk/gdkpixbuf.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdk/gdkpixbuf.h b/gdk/gdkpixbuf.h index 99e718df63..6b21078edb 100644 --- a/gdk/gdkpixbuf.h +++ b/gdk/gdkpixbuf.h @@ -38,9 +38,8 @@ G_BEGIN_DECLS /* Fetching a region from a drawable */ -GdkPixbuf *gdk_pixbuf_get_from_drawable (GdkPixbuf *dest, - GdkDrawable *src, - GdkColormap *cmap, +GdkPixbuf *gdk_pixbuf_get_from_window (GdkPixbuf *dest, + GdkWindow *window, int src_x, int src_y, int dest_x, |