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.
This commit is contained in:
Tor Lillqvist 2000-01-05 17:05:30 +00:00 committed by Tor Lillqvist
parent 0a60e2963c
commit 273089af2a
8 changed files with 36 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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.
2000-01-02 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkevents-win32.c: Clean up some more leftovers from

View File

@ -1,3 +1,8 @@
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.
2000-01-02 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkevents-win32.c: Clean up some more leftovers from

View File

@ -1,3 +1,8 @@
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.
2000-01-02 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkevents-win32.c: Clean up some more leftovers from

View File

@ -1,3 +1,8 @@
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.
2000-01-02 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkevents-win32.c: Clean up some more leftovers from

View File

@ -1,3 +1,8 @@
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.
2000-01-02 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkevents-win32.c: Clean up some more leftovers from

View File

@ -1,3 +1,8 @@
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.
2000-01-02 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkevents-win32.c: Clean up some more leftovers from

View File

@ -1,3 +1,8 @@
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.
2000-01-02 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkevents-win32.c: Clean up some more leftovers from

View File

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