diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-09-08 17:55:02 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-09-08 17:55:02 +0000 |
commit | fd97e93165ed58427f7d442b90e3ce992d37eb3a (patch) | |
tree | 36657ef5fa192ccccd63d8990a60da4e149bedbb /gtk/gtkstyle.h | |
parent | 372853b107d752cdb5e8d180be9b6a1c9a752f36 (diff) | |
download | gtk+-fd97e93165ed58427f7d442b90e3ce992d37eb3a.tar.gz |
Replace uses of GBSearchArray with GArray and bsearch(), to remove
Sat Sep 8 13:53:09 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrc.[ch] gtk/gtkstyle.[ch]: Replace uses of GBSearchArray
with GArray and bsearch(), to remove dependency on a still
evolving interface that we want to keep private to glib/gobject.
Diffstat (limited to 'gtk/gtkstyle.h')
-rw-r--r-- | gtk/gtkstyle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkstyle.h b/gtk/gtkstyle.h index 4335e0bb87..8c2a0c5b4c 100644 --- a/gtk/gtkstyle.h +++ b/gtk/gtkstyle.h @@ -117,7 +117,7 @@ struct _GtkStyle GtkRcStyle *rc_style; GSList *styles; /* of type GtkStyle* */ - GBSearchArray *property_cache; + GArray *property_cache; GSList *icon_factories; /* of type GtkIconFactory* */ }; |