summaryrefslogtreecommitdiff
path: root/gtk/gtkcelleditable.c
diff options
context:
space:
mode:
authorManish Singh <yosh@gimp.org>2002-10-07 01:38:40 +0000
committerManish Singh <yosh@src.gnome.org>2002-10-07 01:38:40 +0000
commit28def5e4ad3ad4998e222f4975fc0e63e89aad65 (patch)
treecaf4ab4725b659bec940dca3f6955860621dc066 /gtk/gtkcelleditable.c
parent8b6a832f26a644999ed965ebbb23d0a8d5d8dc3f (diff)
downloadgtk+-28def5e4ad3ad4998e222f4975fc0e63e89aad65.tar.gz
deprecation cleanup
Sun Oct 6 18:32:11 2002 Manish Singh <yosh@gimp.org> * gtk/gtkcelleditable.c gtk/gtkcellrenderer.[ch] gtk/gtkcellrendererpixbuf.[ch] gtk/gtkcellrenderertext.[ch] gtk/gtkcellrenderertoggle.[ch]: deprecation cleanup
Diffstat (limited to 'gtk/gtkcelleditable.c')
-rw-r--r--gtk/gtkcelleditable.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/gtk/gtkcelleditable.c b/gtk/gtkcelleditable.c
index 5ec354098a..23d3ee24d5 100644
--- a/gtk/gtkcelleditable.c
+++ b/gtk/gtkcelleditable.c
@@ -20,14 +20,13 @@
#include "gtkcelleditable.h"
#include "gtkmarshalers.h"
-#include "gtksignal.h"
static void gtk_cell_editable_base_init (gpointer g_class);
-GtkType
+GType
gtk_cell_editable_get_type (void)
{
- static GtkType cell_editable_type = 0;
+ static GType cell_editable_type = 0;
if (! cell_editable_type)
{
@@ -43,7 +42,11 @@ gtk_cell_editable_get_type (void)
0,
NULL
};
- cell_editable_type = g_type_register_static (G_TYPE_INTERFACE, "GtkCellEditable", &cell_editable_info, 0);
+
+ cell_editable_type =
+ g_type_register_static (G_TYPE_INTERFACE, "GtkCellEditable",
+ &cell_editable_info, 0);
+
g_type_interface_add_prerequisite (cell_editable_type, GTK_TYPE_WIDGET);
}