summaryrefslogtreecommitdiff
path: root/gtk/gtkcelleditable.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2001-11-17 23:28:51 +0000
committerOwen Taylor <otaylor@src.gnome.org>2001-11-17 23:28:51 +0000
commita036c6e59f27ce53950c64a7672fa2cf51b21f19 (patch)
tree0518e9cea97df1e5d4aeca65be4d2ccc95a5447d /gtk/gtkcelleditable.c
parent3a3468024984ecb9617af5422c76e5a57240c9d0 (diff)
downloadgtk+-a036c6e59f27ce53950c64a7672fa2cf51b21f19.tar.gz
Make gtkmarshal.list/gtkmarshal.h only for compatibility with GTK+-1.2;
Sat Nov 17 18:26:45 2001 Owen Taylor <otaylor@redhat.com> * gtk/Makefile.am gtk/gtkmarshal.list gtk/gtkmarshalers.list gtk/*.c gtk/gtksignal.h: Make gtkmarshal.list/gtkmarshal.h only for compatibility with GTK+-1.2; and deprecate it; put all marshalers we actually use into gtkmarshalers.list and use the _gtk_marshal_ prefix for these marshalers.
Diffstat (limited to 'gtk/gtkcelleditable.c')
-rw-r--r--gtk/gtkcelleditable.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk/gtkcelleditable.c b/gtk/gtkcelleditable.c
index 158ed5265b..5ec354098a 100644
--- a/gtk/gtkcelleditable.c
+++ b/gtk/gtkcelleditable.c
@@ -19,6 +19,7 @@
#include "gtkcelleditable.h"
+#include "gtkmarshalers.h"
#include "gtksignal.h"
static void gtk_cell_editable_base_init (gpointer g_class);
@@ -61,14 +62,14 @@ gtk_cell_editable_base_init (gpointer g_class)
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (GtkCellEditableIface, editing_done),
NULL, NULL,
- gtk_marshal_VOID__VOID,
+ _gtk_marshal_VOID__VOID,
G_TYPE_NONE, 0);
g_signal_new ("remove_widget",
GTK_TYPE_CELL_EDITABLE,
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (GtkCellEditableIface, remove_widget),
NULL, NULL,
- gtk_marshal_VOID__VOID,
+ _gtk_marshal_VOID__VOID,
G_TYPE_NONE, 0);
initialized = TRUE;
}