diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2009-02-22 05:20:14 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2009-02-22 05:20:14 +0000 |
commit | e6f6ee193d81fdb7009cb324cf9d90e3d69b6616 (patch) | |
tree | e92996618c630662ff0dc07d62b26c24d5419c20 /gtk/gtktogglebutton.c | |
parent | 005f5773dfea6048fbf458511238baa184bcf07d (diff) | |
download | gtk+-e6f6ee193d81fdb7009cb324cf9d90e3d69b6616.tar.gz |
Rename gtk_activatable_reset to gtk_activatable_sync_action_properties,
* gtk/gtk.symbols:
* gtk/gtkactivatable.[hc]: Rename gtk_activatable_reset to
gtk_activatable_sync_action_properties, since the previous name
was deemed too generic. Update all implementations.
svn path=/trunk/; revision=22389
Diffstat (limited to 'gtk/gtktogglebutton.c')
-rw-r--r-- | gtk/gtktogglebutton.c | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/gtk/gtktogglebutton.c b/gtk/gtktogglebutton.c index 6526f82fe2..ddc6678ffd 100644 --- a/gtk/gtktogglebutton.c +++ b/gtk/gtktogglebutton.c @@ -71,11 +71,11 @@ static void gtk_toggle_button_update_state (GtkButton *button); static void gtk_toggle_button_activatable_interface_init (GtkActivatableIface *iface); -static void gtk_toggle_button_activatable_update (GtkActivatable *activatable, - GtkAction *action, - const gchar *property_name); -static void gtk_toggle_button_activatable_reset (GtkActivatable *activatable, - GtkAction *action); +static void gtk_toggle_button_update (GtkActivatable *activatable, + GtkAction *action, + const gchar *property_name); +static void gtk_toggle_button_sync_action_properties (GtkActivatable *activatable, + GtkAction *action); static GtkActivatableIface *parent_activatable_iface; static guint toggle_button_signals[LAST_SIGNAL] = { 0 }; @@ -151,19 +151,18 @@ gtk_toggle_button_init (GtkToggleButton *toggle_button) GTK_BUTTON (toggle_button)->depress_on_activate = TRUE; } - -static void -gtk_toggle_button_activatable_interface_init (GtkActivatableIface *iface) +static void +gtk_toggle_button_activatable_interface_init (GtkActivatableIface *iface) { parent_activatable_iface = g_type_interface_peek_parent (iface); - iface->update = gtk_toggle_button_activatable_update; - iface->reset = gtk_toggle_button_activatable_reset; + iface->update = gtk_toggle_button_update; + iface->sync_action_properties = gtk_toggle_button_sync_action_properties; } static void -gtk_toggle_button_activatable_update (GtkActivatable *activatable, - GtkAction *action, - const gchar *property_name) +gtk_toggle_button_update (GtkActivatable *activatable, + GtkAction *action, + const gchar *property_name) { GtkToggleButton *button; @@ -181,12 +180,12 @@ gtk_toggle_button_activatable_update (GtkActivatable *activatable, } static void -gtk_toggle_button_activatable_reset (GtkActivatable *activatable, - GtkAction *action) +gtk_toggle_button_sync_action_properties (GtkActivatable *activatable, + GtkAction *action) { GtkToggleButton *button; - parent_activatable_iface->reset (activatable, action); + parent_activatable_iface->sync_action_properties (activatable, action); if (!GTK_IS_TOGGLE_ACTION (action)) return; |