[GI] Make argument names in vfunc decls consistent with invoker docs

This commit is contained in:
Pavel Holejsovsky
2011-01-18 06:29:57 +01:00
parent 729c823955
commit 204d1fd0a6
3 changed files with 13 additions and 13 deletions

View File

@ -51,8 +51,8 @@ struct _GtkEditableInterface
/* signals */
void (* insert_text) (GtkEditable *editable,
const gchar *text,
gint length,
const gchar *new_text,
gint new_text_length,
gint *position);
void (* delete_text) (GtkEditable *editable,
gint start_pos,
@ -61,8 +61,8 @@ struct _GtkEditableInterface
/* vtable */
void (* do_insert_text) (GtkEditable *editable,
const gchar *text,
gint length,
const gchar *new_text,
gint new_text_length,
gint *position);
void (* do_delete_text) (GtkEditable *editable,
gint start_pos,