diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-08-23 15:26:49 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-08-23 15:26:49 +0000 |
commit | a2d60d44b170d403f26444081113be8d60afe8a3 (patch) | |
tree | da9506d74a6edba8c3fc4232b350eb3263df95b5 /demos/testpixbuf-drawable.c | |
parent | 34852377443196c3b2b6affd18e3ad7f5400cea8 (diff) | |
download | gtk+-a2d60d44b170d403f26444081113be8d60afe8a3.tar.gz |
[ Patch from Sebastian Wilhelmi, 52790 ]
Wed Aug 22 19:15:39 2001 Owen Taylor <otaylor@redhat.com>
[ Patch from Sebastian Wilhelmi, 52790 ]
* gtk/gtkversion.h.in gtk/gtk.h: New file replacing gtkcompat.h
* gdk/gdkcompat.h gdk/gdk*.h gtk/gtkcompat.h.in gtk/gtk*.h:
Move compatibility macros from g[dt]kcompat.h to within
#ifndef G[DT]K_DISABLE_DEPRECATED in each file.
* gdk/gdk-pixbuf-csource.c: Fix up include of gtkcompat.h.
* demos/Makefile.am demos/gtk-demo/Makefile.am
docs/reference/gdk-pixbuf/Makefile.am modules/input/Makefile.am
tests/Makefile.am: Remove references to -G[DT]K_DISABLE_DEPRECATED.
* demos/{pixbuf-demo.c,testpixbuf-drawable.c,testpixbuf-save.c,
testpixbuf.c}: Fix usages of deprecated functions.
Diffstat (limited to 'demos/testpixbuf-drawable.c')
-rw-r--r-- | demos/testpixbuf-drawable.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/demos/testpixbuf-drawable.c b/demos/testpixbuf-drawable.c index be40573cbe..6581d47749 100644 --- a/demos/testpixbuf-drawable.c +++ b/demos/testpixbuf-drawable.c @@ -86,9 +86,8 @@ int main(int argc, char **argv) gtk_init(&argc, &argv); gdk_rgb_set_verbose(TRUE); - gdk_rgb_init(); - gtk_widget_set_default_colormap(gdk_rgb_get_cmap()); + gtk_widget_set_default_colormap(gdk_rgb_get_colormap()); root = GDK_ROOT_PARENT(); pixbuf = gdk_pixbuf_get_from_drawable(NULL, root, NULL, |