[tasks/gnome3: 3/14] koto-entry: GtkEditableInterface, not Class



commit c9116da1b2b16162dc43bb02b7a6881f5b42e297
Author: Ross Burton <ross linux intel com>
Date:   Wed Apr 27 19:32:43 2011 +0100

    koto-entry: GtkEditableInterface, not Class

 libkoto/koto-entry.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/libkoto/koto-entry.c b/libkoto/koto-entry.c
index cf49544..c523bde 100644
--- a/libkoto/koto-entry.c
+++ b/libkoto/koto-entry.c
@@ -26,13 +26,13 @@
 #include "koto-undo-manager.h"
 #include "koto-entry.h"
 
-static void koto_entry_editable_init (GtkEditableClass *iface);
+static void koto_entry_editable_init (GtkEditableInterface *iface);
 
 G_DEFINE_TYPE_WITH_CODE (KotoEntry, koto_entry,
                          GTK_TYPE_ENTRY,
                          G_IMPLEMENT_INTERFACE (GTK_TYPE_EDITABLE, koto_entry_editable_init));
 
-static GtkEditableClass *parent_editable_interface = NULL;
+static GtkEditableInterface *parent_editable_interface = NULL;
 
 #define ENTRY_PRIVATE(o) \
   (G_TYPE_INSTANCE_GET_PRIVATE ((o), KOTO_TYPE_ENTRY, KotoEntryPrivate))
@@ -154,7 +154,7 @@ koto_entry_dispose (GObject *object)
 
 
 static void
-koto_entry_editable_init (GtkEditableClass *iface)
+koto_entry_editable_init (GtkEditableInterface *iface)
 {
   parent_editable_interface = g_type_interface_peek_parent (iface);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]