diff options
author | Matthias Clasen <maclas@gmx.de> | 2004-06-02 03:16:03 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-06-02 03:16:03 +0000 |
commit | d5f3cb140955ee9b95c1cbdcebe90ca321c3b18a (patch) | |
tree | 12c85df90fa1c371e59df54202d825121b82f082 /gtk/gtkentrycompletion.h | |
parent | 018511c3aa10a7f53a787734bcdceb420bebc9d1 (diff) | |
download | gtk+-d5f3cb140955ee9b95c1cbdcebe90ca321c3b18a.tar.gz |
Rename function parameters from index to index_ to prevent clash with BSD
Tue Jun 1 23:14:46 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktoolbar.h:
* gtk/gtktoolbar.c:
* gtk/gtkentrycompletion.h:
* gtk/gtkentrycompletion.c:
* gtk/gtkcombobox.h:
* gtk/gtkcombobox.c: Rename function parameters from
index to index_ to prevent clash with BSD index(). (#143001)
Diffstat (limited to 'gtk/gtkentrycompletion.h')
-rw-r--r-- | gtk/gtkentrycompletion.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkentrycompletion.h b/gtk/gtkentrycompletion.h index 1a3cacf499..5bdcc4c1ca 100644 --- a/gtk/gtkentrycompletion.h +++ b/gtk/gtkentrycompletion.h @@ -62,7 +62,7 @@ struct _GtkEntryCompletionClass GtkTreeModel *model, GtkTreeIter *iter); void (* action_activated) (GtkEntryCompletion *completion, - gint index); + gint index_); /* Padding for future expansion */ void (*_gtk_reserved0) (void); @@ -91,13 +91,13 @@ gint gtk_entry_completion_get_minimum_key_length (GtkEntryComplet void gtk_entry_completion_complete (GtkEntryCompletion *completion); void gtk_entry_completion_insert_action_text (GtkEntryCompletion *completion, - gint index, + gint index_, const gchar *text); void gtk_entry_completion_insert_action_markup (GtkEntryCompletion *completion, - gint index, + gint index_, const gchar *markup); void gtk_entry_completion_delete_action (GtkEntryCompletion *completion, - gint index); + gint index_); /* convenience */ void gtk_entry_completion_set_text_column (GtkEntryCompletion *completion, |