diff options
author | Matthias Clasen <mclasen@redhat.com> | 2004-12-16 03:49:22 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-12-16 03:49:22 +0000 |
commit | 55434ebd3296151af64aad4bc380d1f91f6a1f2c (patch) | |
tree | d1c5f304cf9ae1b590b11adbe02250746ac7f667 /gtk/gtkentrycompletion.h | |
parent | 55ef0b48c382e7e1ed58f0d8c40d8f4e5dc06ad0 (diff) | |
download | gtk+-55434ebd3296151af64aad4bc380d1f91f6a1f2c.tar.gz |
Require glib 2.6.0 for g_filename_display_basename.
2004-12-15 Matthias Clasen <mclasen@redhat.com>
* configure.in: Require glib 2.6.0 for
g_filename_display_basename.
* gtk/gtkentrycompletion.[hc]: Make the prefix parameter
to the insert-prefix signal a const gchar* instead of a
gchar*. (#161415, Murray Cumming)
Also remove an unused static function.
Diffstat (limited to 'gtk/gtkentrycompletion.h')
-rw-r--r-- | gtk/gtkentrycompletion.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkentrycompletion.h b/gtk/gtkentrycompletion.h index addac0b5a7..f1e22ebcc7 100644 --- a/gtk/gtkentrycompletion.h +++ b/gtk/gtkentrycompletion.h @@ -64,7 +64,7 @@ struct _GtkEntryCompletionClass void (* action_activated) (GtkEntryCompletion *completion, gint index_); gboolean (* insert_prefix) (GtkEntryCompletion *completion, - gchar *prefix); + const gchar *prefix); /* Padding for future expansion */ void (*_gtk_reserved0) (void); |