diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-10-02 22:30:37 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-10-02 22:30:37 +0000 |
commit | 6cb79658c2a64d01f6e488f065eb2d265be97414 (patch) | |
tree | e22737293757c5de6c32d8d4a440923fce99b9c3 /gtk/gtkpixmap.c | |
parent | ed521b3cfd21763c8e049148dc004c24d0785ad6 (diff) | |
download | gdk-pixbuf-6cb79658c2a64d01f6e488f065eb2d265be97414.tar.gz |
Export _gdk_draw_pixbuf as gdk_draw_pixbuf(), rename the _draw_pixbuf
Wed Oct 2 17:46:53 2002 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdrawable.h gdk/gdkinternals.h gdk/gdkdraw.c
gdk/gdkwindow.c gdk/gdkdrawable.c: Export _gdk_draw_pixbuf
as gdk_draw_pixbuf(), rename the _draw_pixbuf virtual
function to draw_pixbuf. (#60582)
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable[_alpha]):
Note that these functions are obsolete in the docs.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable):
Remove all the sanity checks now we make it clear
that it is obsolete name for gdk_draw_pixbuf().
* gdk/gdkpixmap.c gtk/gtkcellrendererpixbuf.c gtk/gtkimage.c
gtk/gtkpixmap.c demos/testpixbuf-scale.c demos/testpixbuf.c
tests/testrgb.c: Use gdk_draw_pixbuf() everywhere.
* gtk/gtklabel.c (gtk_label_set_mnemonic_widget): Fix
some warnings.
* gdk/gdkinternals.h (struct _GdkEventPrivate): Fix missed
bit from last gdk_event_get_screen() change.
* gdk/gdkevents.c: Couple of small fixes.i
Diffstat (limited to 'gtk/gtkpixmap.c')
-rw-r--r-- | gtk/gtkpixmap.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gtk/gtkpixmap.c b/gtk/gtkpixmap.c index e37ae0bad..d7f6a8619 100644 --- a/gtk/gtkpixmap.c +++ b/gtk/gtkpixmap.c @@ -287,14 +287,14 @@ build_insensitive_pixmap (GtkPixmap *gtkpixmap) insensitive = gdk_pixmap_new (GTK_WIDGET (gtkpixmap)->window, w, h, -1); - gdk_pixbuf_render_to_drawable (stated, - insensitive, - GTK_WIDGET (gtkpixmap)->style->white_gc, - 0, 0, - 0, 0, - w, h, - GDK_RGB_DITHER_NORMAL, - 0, 0); + gdk_draw_pixbuf (insensitive, + GTK_WIDGET (gtkpixmap)->style->white_gc, + stated, + 0, 0, + 0, 0, + w, h, + GDK_RGB_DITHER_NORMAL, + 0, 0); gtkpixmap->pixmap_insensitive = insensitive; |