summaryrefslogtreecommitdiff
path: root/gdk
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2000-01-05 17:05:30 +0000
committerTor Lillqvist <tml@src.gnome.org>2000-01-05 17:05:30 +0000
commit273089af2a9d72cebe83587bc0c00db276683278 (patch)
treef1aabb254513cc974e0c98ece08caf7279a731b6 /gdk
parent0a60e2963c1a3ec9746d7b9f06428d01ff11cece (diff)
downloadgtk+-273089af2a9d72cebe83587bc0c00db276683278.tar.gz
Fix copy&paste error: Call the backend's draw_lines method, not
2000-01-05 Tor Lillqvist <tml@iki.fi> * gdk/gdkdraw.c (gdk_draw_lines): Fix copy&paste error: Call the backend's draw_lines method, not draw_points.
Diffstat (limited to 'gdk')
-rw-r--r--gdk/gdkdraw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/gdkdraw.c b/gdk/gdkdraw.c
index c4b6d18890..c4e649659e 100644
--- a/gdk/gdkdraw.c
+++ b/gdk/gdkdraw.c
@@ -427,5 +427,5 @@ gdk_draw_lines (GdkDrawable *drawable,
if (GDK_DRAWABLE_DESTROYED (drawable))
return;
- ((GdkDrawablePrivate *)drawable)->klass->draw_points (drawable, gc, points, npoints);
+ ((GdkDrawablePrivate *)drawable)->klass->draw_lines (drawable, gc, points, npoints);
}