diff options
author | Carlos Garnacho <carlosg@gnome.org> | 2010-08-04 12:50:37 +0200 |
---|---|---|
committer | Carlos Garnacho <carlosg@gnome.org> | 2010-12-04 15:37:34 +0100 |
commit | 09d8592b5bc722cdfe6164929ec2f02943b0379c (patch) | |
tree | 0e874c74faea4d53946d3de512e0fffd931c6de5 /gtk/gtkwidgetpath.c | |
parent | ad08330fae98a6d42a590d5320faf351e136f746 (diff) | |
download | gtk+-09d8592b5bc722cdfe6164929ec2f02943b0379c.tar.gz |
GtkWidgetPath: Make API more consistent.
Diffstat (limited to 'gtk/gtkwidgetpath.c')
-rw-r--r-- | gtk/gtkwidgetpath.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gtk/gtkwidgetpath.c b/gtk/gtkwidgetpath.c index bbac2a7af4..60dcfa2371 100644 --- a/gtk/gtkwidgetpath.c +++ b/gtk/gtkwidgetpath.c @@ -132,8 +132,8 @@ gtk_widget_path_prepend_type (GtkWidgetPath *path, } GType -gtk_widget_path_get_element_type (const GtkWidgetPath *path, - guint pos) +gtk_widget_path_iter_get_widget_type (const GtkWidgetPath *path, + guint pos) { GtkPathElement *elem; @@ -145,9 +145,9 @@ gtk_widget_path_get_element_type (const GtkWidgetPath *path, } void -gtk_widget_path_set_element_type (GtkWidgetPath *path, - guint pos, - GType type) +gtk_widget_path_iter_set_widget_type (GtkWidgetPath *path, + guint pos, + GType type) { GtkPathElement *elem; @@ -160,8 +160,8 @@ gtk_widget_path_set_element_type (GtkWidgetPath *path, } G_CONST_RETURN gchar * -gtk_widget_path_get_element_name (const GtkWidgetPath *path, - guint pos) +gtk_widget_path_iter_get_name (const GtkWidgetPath *path, + guint pos) { GtkPathElement *elem; @@ -173,9 +173,9 @@ gtk_widget_path_get_element_name (const GtkWidgetPath *path, } void -gtk_widget_path_set_element_name (GtkWidgetPath *path, - guint pos, - const gchar *name) +gtk_widget_path_iter_set_name (GtkWidgetPath *path, + guint pos, + const gchar *name) { GtkPathElement *elem; |