summaryrefslogtreecommitdiff
path: root/gdk/gdkimage.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2001-11-21 22:42:50 +0000
committerOwen Taylor <otaylor@src.gnome.org>2001-11-21 22:42:50 +0000
commitaa1a46e26b1b22ac3fadf1a84b9f62410dee0710 (patch)
tree6a80bce532259147386cbb9f14faeea16d123164 /gdk/gdkimage.c
parent9b6c73271fb77161f8b550cd02fdca4a6736f188 (diff)
downloadgtk+-aa1a46e26b1b22ac3fadf1a84b9f62410dee0710.tar.gz
Fix problem with lost parameter.
Wed Nov 21 17:41:39 2001 Owen Taylor <otaylor@redhat.com> * gdk/gdkimage.c (gdk_image_get): Fix problem with lost parameter.
Diffstat (limited to 'gdk/gdkimage.c')
-rw-r--r--gdk/gdkimage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/gdkimage.c b/gdk/gdkimage.c
index 71ae136e08..fe913325fa 100644
--- a/gdk/gdkimage.c
+++ b/gdk/gdkimage.c
@@ -87,7 +87,7 @@ gdk_image_get (GdkWindow *drawable,
g_return_val_if_fail (width >= 0, NULL);
g_return_val_if_fail (height >= 0, NULL);
- return gdk_drawable_get_image (drawable, y, width, height);
+ return gdk_drawable_get_image (drawable, x, y, width, height);
}
/**