summaryrefslogtreecommitdiff
path: root/gtk/gtkentry.c
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-09-11 04:12:42 +0200
committerJavier Jardón <jjardon@gnome.org>2010-09-17 19:57:09 +0200
commitefbf04236e04c3c9e5ce7466738d6c33e552eb0f (patch)
tree1863c917354b926f9c63ba44178a28dd6db86fa6 /gtk/gtkentry.c
parent6e9349d858412dcb12bff17be4b85c6365e81ff0 (diff)
downloadgtk+-efbf04236e04c3c9e5ce7466738d6c33e552eb0f.tar.gz
Change GtkEditable typedef from GtkEditableClass to GtkEditabeInterface
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=323904
Diffstat (limited to 'gtk/gtkentry.c')
-rw-r--r--gtk/gtkentry.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c
index 5aea1375fb..fddf25c346 100644
--- a/gtk/gtkentry.c
+++ b/gtk/gtkentry.c
@@ -239,7 +239,7 @@ typedef enum
/* GObject, GtkObject methods
*/
-static void gtk_entry_editable_init (GtkEditableClass *iface);
+static void gtk_entry_editable_init (GtkEditableInterface *iface);
static void gtk_entry_cell_editable_init (GtkCellEditableIface *iface);
static void gtk_entry_set_property (GObject *object,
guint prop_id,
@@ -1769,7 +1769,7 @@ gtk_entry_class_init (GtkEntryClass *class)
}
static void
-gtk_entry_editable_init (GtkEditableClass *iface)
+gtk_entry_editable_init (GtkEditableInterface *iface)
{
iface->do_insert_text = gtk_entry_insert_text;
iface->do_delete_text = gtk_entry_delete_text;