summaryrefslogtreecommitdiff
path: root/gtk/gtkentrycompletion.h
diff options
context:
space:
mode:
authorKristian Rietveld <kris@gtk.org>2003-10-11 13:49:22 +0000
committerKristian Rietveld <kristian@src.gnome.org>2003-10-11 13:49:22 +0000
commit761a6745c39a231a443471d0764d0303b0ebd22f (patch)
tree983690d1bc9dc0d3cfb1239ef3adb9de3a9d1138 /gtk/gtkentrycompletion.h
parentd75b1a1a0ad22c000b634e680b5cd4fc7b7f892d (diff)
downloadgdk-pixbuf-761a6745c39a231a443471d0764d0303b0ebd22f.tar.gz
the gchar* parameters should be const (pointed out by both Marco Pesenti
Sat Oct 11 15:47:03 2003 Kristian Rietveld <kris@gtk.org> * gtk/gtkentrycompletion.[ch] (gtk_entry_completion_insert_action), (gtk_entry_completion_insert_action_text), (gtk_entry_completion_insert_action_markup): the gchar* parameters should be const (pointed out by both Marco Pesenti Gritti and Murray Cumming (#124356).
Diffstat (limited to 'gtk/gtkentrycompletion.h')
-rw-r--r--gtk/gtkentrycompletion.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkentrycompletion.h b/gtk/gtkentrycompletion.h
index ecf255778..2a1b23327 100644
--- a/gtk/gtkentrycompletion.h
+++ b/gtk/gtkentrycompletion.h
@@ -87,10 +87,10 @@ void gtk_entry_completion_complete (GtkEntryComplet
void gtk_entry_completion_insert_action_text (GtkEntryCompletion *completion,
gint index,
- gchar *text);
+ const gchar *text);
void gtk_entry_completion_insert_action_markup (GtkEntryCompletion *completion,
gint index,
- gchar *markup);
+ const gchar *markup);
void gtk_entry_completion_delete_action (GtkEntryCompletion *completion,
gint index);