Add introspection friendly version of gtk_tree_path_new_from_indices
Add gtk_tree_path_new_from_indicesv which takes an array of integers with a length. Use "Rename to" annotation to rename the method as gtk_tree_path_new_from_indices. This is needed because the original method takes variadic arguments which is not supported by introspection. https://bugzilla.gnome.org/show_bug.cgi?id=706119
This commit is contained in:
@ -167,6 +167,9 @@ GtkTreePath *gtk_tree_path_new_from_string (const gchar *path);
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GtkTreePath *gtk_tree_path_new_from_indices (gint first_index,
|
||||
...);
|
||||
GDK_AVAILABLE_IN_3_12
|
||||
GtkTreePath *gtk_tree_path_new_from_indicesv (gint *indices,
|
||||
gsize length);
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
gchar *gtk_tree_path_to_string (GtkTreePath *path);
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
|
||||
Reference in New Issue
Block a user