diff options
author | Havoc Pennington <hp@pobox.com> | 2001-01-31 03:51:14 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2001-01-31 03:51:14 +0000 |
commit | f7d593c99dd69cf267aa59bc4957629f5f34b59e (patch) | |
tree | 6342d93928da449395d9499492d787b60bc19c91 /gtk/gtktree.c | |
parent | 5cd2993201f1d9d4866928cf2ffa2abbbf2a30ab (diff) | |
download | gdk-pixbuf-f7d593c99dd69cf267aa59bc4957629f5f34b59e.tar.gz |
bracket in #ifdef GTK_ENABLE_BROKEN.
2001-01-30 Havoc Pennington <hp@pobox.com>
* gtk/gtktreeitem.h, gtk/gtktree.h, gtk/gtktext.h: bracket in
#ifdef GTK_ENABLE_BROKEN.
* gtk/gtktreeitem.c, gtk/gtktree.c, gtk/gtktext.c: #define
GTK_ENABLE_BROKEN just before including the broken headers.
* gtk/gtktypeutils.c: #define GTK_ENABLE_BROKEN, so we can get the
deprecated types registered.
* gtk/testgtk.c, gtk/testselection.c: #define GTK_ENABLE_BROKEN,
we have to test the broken stuff.
* docs/Changes-2.0.txt: explain GTK_ENABLE_BROKEN
2001-01-30 Havoc Pennington <hp@pobox.com>
Also committed a bunch of automatic changes made by gtk-doc,
after reviewing for correctness.
* gtk/tmpl/gtktext.sgml: add warning about deprecation and note
about what to use instead
* gtk/tmpl/gtktree.sgml: ditto
* gtk/Makefile.am (scan): pass --deprecated-guards option to
gtk-doc; requires new version of gtk-doc from CVS
* gtk/gtk-docs.sgml: move GtkText to the deprecated section
instead of the GtkTextView section. Oops.
Diffstat (limited to 'gtk/gtktree.c')
-rw-r--r-- | gtk/gtktree.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gtk/gtktree.c b/gtk/gtktree.c index 2c845874f..1102a98eb 100644 --- a/gtk/gtktree.c +++ b/gtk/gtktree.c @@ -24,12 +24,14 @@ * GTK+ at ftp://ftp.gtk.org/pub/gtk/. */ -#include "gtktree.h" -#include "gtktreeitem.h" #include "gtkmain.h" #include "gtksignal.h" #include "gtklist.h" +#define GTK_ENABLE_BROKEN +#include "gtktree.h" +#include "gtktreeitem.h" + enum { SELECTION_CHANGED, SELECT_CHILD, |