diff options
author | Carlos Garnacho <carlosg@gnome.org> | 2010-08-05 11:08:51 +0200 |
---|---|---|
committer | Carlos Garnacho <carlosg@gnome.org> | 2010-12-04 15:37:35 +0100 |
commit | a3637ec60d9281f1b903ae48786184d690b0f055 (patch) | |
tree | d1ced59f191af9dfa89b922973ee6720528d2c00 /gtk/gtkwidgetpath.h | |
parent | 198d75bea5065adb40db20db46d0fc581110d4db (diff) | |
download | gtk+-a3637ec60d9281f1b903ae48786184d690b0f055.tar.gz |
s/child class/region/ everywhere.
"Child class" is an invented term anyway, and it conceptually defines
identifiable regions in widgets.
Diffstat (limited to 'gtk/gtkwidgetpath.h')
-rw-r--r-- | gtk/gtkwidgetpath.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkwidgetpath.h b/gtk/gtkwidgetpath.h index e4c1de1579..7c5059e716 100644 --- a/gtk/gtkwidgetpath.h +++ b/gtk/gtkwidgetpath.h @@ -59,24 +59,24 @@ gboolean gtk_widget_path_iter_has_qname (const GtkWidgetPath *path void gtk_widget_path_iter_add_region (GtkWidgetPath *path, guint pos, const gchar *name, - GtkChildClassFlags flags); + GtkRegionFlags flags); void gtk_widget_path_iter_remove_region (GtkWidgetPath *path, guint pos, const gchar *name); void gtk_widget_path_iter_clear_regions (GtkWidgetPath *path, guint pos); -GSList * gtk_widget_path_iter_list_regions (const GtkWidgetPath *path, +GSList * gtk_widget_path_iter_list_regions (cosnt GtkWidgetPath *path, guint pos); gboolean gtk_widget_path_iter_has_region (const GtkWidgetPath *path, guint pos, const gchar *name, - GtkChildClassFlags *flags); + GtkRegionFlags *flags); gboolean gtk_widget_path_iter_has_qregion (const GtkWidgetPath *path, guint pos, GQuark qname, - GtkChildClassFlags *flags); + GtkRegionFlags *flags); GType gtk_widget_path_get_widget_type (const GtkWidgetPath *path); |