diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-11-17 23:28:51 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-11-17 23:28:51 +0000 |
commit | a036c6e59f27ce53950c64a7672fa2cf51b21f19 (patch) | |
tree | 0518e9cea97df1e5d4aeca65be4d2ccc95a5447d /gtk/gtkscale.c | |
parent | 3a3468024984ecb9617af5422c76e5a57240c9d0 (diff) | |
download | gtk+-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/gtkscale.c')
-rw-r--r-- | gtk/gtkscale.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkscale.c b/gtk/gtkscale.c index 79be496bed..c03aa14105 100644 --- a/gtk/gtkscale.c +++ b/gtk/gtkscale.c @@ -28,7 +28,7 @@ #include <math.h> #include "gtkintl.h" #include "gtkscale.h" -#include "gtkmarshal.h" +#include "gtkmarshalers.h" #include "gdk/gdkkeysyms.h" #include "gtkbindings.h" @@ -138,7 +138,7 @@ gtk_scale_class_init (GtkScaleClass *class) G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GtkScaleClass, format_value), single_string_accumulator, NULL, - gtk_marshal_STRING__DOUBLE, + _gtk_marshal_STRING__DOUBLE, G_TYPE_STRING, 1, G_TYPE_DOUBLE); |