From 35af5c4eba6c95646a5719bae796ece1dbf92275 Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Wed, 7 Mar 2001 14:49:21 +0000 Subject: marshaller fixes. Wed Mar 7 13:24:57 2001 Tim Janik * gtk/*.c: marshaller fixes. * gtk/gtkmarshal.list: extreme cleanup. * gtk/gtktreeview.c (gtk_tree_view_class_init): disable interface param spec for now. * gtk/gtktexttag.c (gtk_text_tag_set_property): use g_value_get_boxed() where appliable. * gtk/gtktypeutils.[hc]: updates to GLib API changes. special cased autogenerated boxed types from gtktypebuiltins_ids.c which are not reference counted: GtkSelectionData, GdkEvent, GdkColor, GtkTextIter, PangoTabArray, PangoFontDescription, GtkTreeIter and GtkTreePath. Thu Mar 1 03:58:56 2001 Tim Janik * gtk/gtktreeselection.h: * gtk/gtktreemodel.c: * gtk/gtktreedatalist.[hc]: fixed includes. no gobject/* file should be included directly, and gobject/gmarshal.h as well as gtk/gtkmarshal.h even can't be included directly. * Makefile.am: grr, install gtk-config-2.0. * gtk/testgtk.c: * gtk/simple.c: * gtk/gtkmenu.c: * gtk/gtkitemfactory.c: use g_object_connect() instead of passing "*signal*::*" args to gtk_widget_set(). * gtk/gtktypeutils.[hc]: got rid of GTK_TYPE_SIGNAL. * gtk/*.c: removed trailer arg from property setters and getters. macro fixups. Thu Mar 1 04:01:57 2001 Tim Janik * test-gdk-pixbuf.c: fixed includes. --- gtk/gtkarrow.c | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) (limited to 'gtk/gtkarrow.c') diff --git a/gtk/gtkarrow.c b/gtk/gtkarrow.c index 2252cbbd26..69859b344f 100644 --- a/gtk/gtkarrow.c +++ b/gtk/gtkarrow.c @@ -46,13 +46,11 @@ static gint gtk_arrow_expose (GtkWidget *widget, static void gtk_arrow_set_property (GObject *object, guint prop_id, const GValue *value, - GParamSpec *pspec, - const gchar *trailer); + GParamSpec *pspec); static void gtk_arrow_get_property (GObject *object, guint prop_id, GValue *value, - GParamSpec *pspec, - const gchar *trailer); + GParamSpec *pspec); GtkType gtk_arrow_get_type (void) @@ -113,14 +111,14 @@ gtk_arrow_class_init (GtkArrowClass *class) widget_class->expose_event = gtk_arrow_expose; } -static void gtk_arrow_set_property (GObject *object, - guint prop_id, - const GValue *value, - GParamSpec *pspec, - const gchar *trailer) +static void +gtk_arrow_set_property (GObject *object, + guint prop_id, + const GValue *value, + GParamSpec *pspec) { GtkArrow *arrow; - + arrow = GTK_ARROW (object); switch (prop_id) @@ -142,14 +140,14 @@ static void gtk_arrow_set_property (GObject *object, } -static void gtk_arrow_get_property (GObject *object, - guint prop_id, - GValue *value, - GParamSpec *pspec, - const gchar *trailer) +static void +gtk_arrow_get_property (GObject *object, + guint prop_id, + GValue *value, + GParamSpec *pspec) { GtkArrow *arrow; - + arrow = GTK_ARROW (object); switch (prop_id) { -- cgit v1.2.1