diff options
author | Colin Walters <walters@verbum.org> | 2010-06-14 16:46:13 -0400 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2010-06-28 13:50:36 -0400 |
commit | eebb16eb1af11c5327dd06b23df82f7528566739 (patch) | |
tree | d29da122bb54ecc166d67e62e14d52784dc5d818 /gtk/gtktreemodel.h | |
parent | 289f3b1b2b20f38fdd88d85f0dd2850b2ccbae7f (diff) | |
download | gtk+-eebb16eb1af11c5327dd06b23df82f7528566739.tar.gz |
Add length to gtk_tree_path_get_indices
The old version wasn't introspectable as it didn't have a length
return parameter. Also, delete gtk_tree_path_get_indices_with_depth,
since it's no longer needed.
Diffstat (limited to 'gtk/gtktreemodel.h')
-rw-r--r-- | gtk/gtktreemodel.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gtk/gtktreemodel.h b/gtk/gtktreemodel.h index e7f59c672b..99abdcabaa 100644 --- a/gtk/gtktreemodel.h +++ b/gtk/gtktreemodel.h @@ -133,10 +133,8 @@ void gtk_tree_path_append_index (GtkTreePath *path, void gtk_tree_path_prepend_index (GtkTreePath *path, gint index_); gint gtk_tree_path_get_depth (GtkTreePath *path); -gint *gtk_tree_path_get_indices (GtkTreePath *path); - -gint *gtk_tree_path_get_indices_with_depth (GtkTreePath *path, - gint *depth); +gint *gtk_tree_path_get_indices (GtkTreePath *path, + gint *depth); void gtk_tree_path_free (GtkTreePath *path); GtkTreePath *gtk_tree_path_copy (const GtkTreePath *path); |