From: Alberto Garcia Date: Fri, 27 Feb 2009 11:16:16 +0000 (+0000) Subject: 2009-02-27 Alberto Garcia X-Git-Tag: 2.1.66-1~114 X-Git-Url: https://vcs.maemo.org/git/?a=commitdiff_plain;h=ccb6b684de734b619c666f6bdd325625a334a794;p=hildon 2009-02-27 Alberto Garcia * src/hildon-picker-button.h * src/hildon-picker-button.c (hildon_picker_button_class_init): Remove "value_changed" slot to avoid ABI breakage --- diff --git a/ChangeLog b/ChangeLog index ad194d1..045f1a5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-02-27 Alberto Garcia + + * src/hildon-picker-button.h + * src/hildon-picker-button.c (hildon_picker_button_class_init): + Remove "value_changed" slot to avoid ABI breakage + 2009-02-26 Alejandro G. Castro * src/hildon-pannable-area.c, diff --git a/src/hildon-picker-button.c b/src/hildon-picker-button.c index d51017e..6f89f39 100644 --- a/src/hildon-picker-button.c +++ b/src/hildon-picker-button.c @@ -324,8 +324,6 @@ hildon_picker_button_class_init (HildonPickerButtonClass * klass) button_class->clicked = hildon_picker_button_clicked; - klass->value_changed = NULL; - g_object_class_install_property (object_class, PROP_SELECTOR, g_param_spec_object ("touch-selector", @@ -354,7 +352,7 @@ hildon_picker_button_class_init (HildonPickerButtonClass * klass) g_signal_new ("value-changed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, - G_STRUCT_OFFSET (HildonPickerButtonClass, value_changed), + 0, NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0, NULL); } diff --git a/src/hildon-picker-button.h b/src/hildon-picker-button.h index 7306cd2..cecc7a5 100644 --- a/src/hildon-picker-button.h +++ b/src/hildon-picker-button.h @@ -56,8 +56,6 @@ struct _HildonPickerButton struct _HildonPickerButtonClass { HildonButtonClass parent_class; - - void (* value_changed) (HildonPickerButton *button); }; GType