summaryrefslogtreecommitdiff
path: root/demos/gtk-demo
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 /demos/gtk-demo
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 'demos/gtk-demo')
-rw-r--r--demos/gtk-demo/combobox.c4
-rw-r--r--demos/gtk-demo/main.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/demos/gtk-demo/combobox.c b/demos/gtk-demo/combobox.c
index 8f4348c722..82588b2923 100644
--- a/demos/gtk-demo/combobox.c
+++ b/demos/gtk-demo/combobox.c
@@ -271,7 +271,7 @@ struct _MaskEntryClass
};
-static void mask_entry_editable_init (GtkEditableClass *iface);
+static void mask_entry_editable_init (GtkEditableInterface *iface);
G_DEFINE_TYPE_WITH_CODE (MaskEntry, mask_entry, GTK_TYPE_ENTRY,
G_IMPLEMENT_INTERFACE (GTK_TYPE_EDITABLE,
@@ -316,7 +316,7 @@ mask_entry_class_init (MaskEntryClass *klass)
static void
-mask_entry_editable_init (GtkEditableClass *iface)
+mask_entry_editable_init (GtkEditableInterface *iface)
{
iface->changed = mask_entry_changed;
}
diff --git a/demos/gtk-demo/main.c b/demos/gtk-demo/main.c
index 2f16a96be0..d55ba68024 100644
--- a/demos/gtk-demo/main.c
+++ b/demos/gtk-demo/main.c
@@ -279,7 +279,7 @@ static gchar *types[] =
"GtkTreeStore ",
"GtkEntry ",
"GtkEditable ",
- "GtkEditableClass ",
+ "GtkEditableInterface ",
"GdkPixmap ",
"GdkEventConfigure ",
"GdkEventMotion ",