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).
This commit is contained in:
Kristian Rietveld
2003-10-11 13:49:22 +00:00
committed by Kristian Rietveld
parent d75b1a1a0a
commit 761a6745c3
7 changed files with 46 additions and 6 deletions

View File

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