diff options
author | Tim Janik <timj@gtk.org> | 1998-08-17 14:48:51 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-08-17 14:48:51 +0000 |
commit | 47215ba40332127afcaed8c9b7f21d9591af59a0 (patch) | |
tree | d20b932ea561a5eeb76718e18f5abb7740ecaff0 /gtk/gtksignal.c | |
parent | 690a18f03288d8053a6c3f32f38b288ade30cde9 (diff) | |
download | gtk+-47215ba40332127afcaed8c9b7f21d9591af59a0.tar.gz |
removed gtk_input_add_interp.merge-to-themes-2-2
Mon Aug 17 15:31:38 1998 Tim Janik <timj@gtk.org>
* gtk/gtkmain.c: removed gtk_input_add_interp.
* gtk/gtkeditable.c (gtk_editable_set_position): fixed bogus "return"
keyword.
(gtk_editable_get_event_time): fix default: case.
* gtk/gtkclist.c (gtk_clist_swap_rows): fixes for lvalue casts.
* gdk/gdkpixmap.c: made a bunch of unexported functions static.
* gdk/gdkcolor.c:
* gdk/gdkvisual.c: include "gdkx.h", since it exports prototypes
of our functions.
* various minor compilation cleanups, such as bogus commas in
enums and similar things.
M
Diffstat (limited to 'gtk/gtksignal.c')
-rw-r--r-- | gtk/gtksignal.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/gtk/gtksignal.c b/gtk/gtksignal.c index 35b50558d5..1830c741bc 100644 --- a/gtk/gtksignal.c +++ b/gtk/gtksignal.c @@ -1159,30 +1159,6 @@ gtk_signal_handlers_destroy (GtkObject *object) } } -/* Work around the - '#define gtk_signal_default_marshaller gtk_marshal_NONE__NONE' - in gtkmarshal.h - - This is here to provide some sort of basic backwards binary - compatibility. It is not listed in gtksignal.h in order to make - sure people recompiling things see warnings and make changes as needed. - -ECL -*/ -#undef gtk_signal_default_marshaller -void -gtk_signal_default_marshaller (GtkObject *object, - GtkSignalFunc func, - gpointer func_data, - GtkArg *params) -{ - GtkSignalMarshaller0 rfunc; - - rfunc = (GtkSignalMarshaller0) func; - - (* rfunc) (object, func_data); -} -#define gtk_signal_default_marshaller gtk_marshal_NONE__NONE - void gtk_signal_set_funcs (GtkSignalMarshal marshal_func, GtkSignalDestroy destroy_func) |