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.
This commit is contained in:
Colin Walters
2010-06-14 16:46:13 -04:00
parent 289f3b1b2b
commit eebb16eb1a
21 changed files with 85 additions and 104 deletions

View File

@ -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);