diff options
author | Not Zed <NotZed@Ximian.com> | 2002-11-26 19:25:51 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2002-11-26 19:25:51 +0800 |
commit | 93723877699c0a64fd25d8dcb11289359710bc6e (patch) | |
tree | e89cc76be1d472f2ca763140db6b8c75baa6c1c3 /filter/filter-datespec.c | |
parent | fb5e3d7237caed2397643f7e3d1e89572567bc64 (diff) | |
download | gsoc2013-evolution-93723877699c0a64fd25d8dcb11289359710bc6e.tar.gz gsoc2013-evolution-93723877699c0a64fd25d8dcb11289359710bc6e.tar.zst gsoc2013-evolution-93723877699c0a64fd25d8dcb11289359710bc6e.zip |
FILTER_RULE_CLASS -> _GET_CLASS
2002-11-26 Not Zed <NotZed@Ximian.com>
* filter-rule.c (filter_rule_validate): FILTER_RULE_CLASS ->
_GET_CLASS
* rule-context.c (rule_context_save): RULE_CONTEXT_CLASS ->
RULE_CONTEXT_GET_CLASS
(rule_context_revert): "
* *.[ch]: Ran fix.sh over all files.
* rule-editor.c (rule_add): widget:set_parent ->
window:set_transient_for
(editor_response): renamed from editor_clicked, handle gtk dialog
response codes.
(rule_edit): connect to response rather than clicked.
(rule_editor_construct): Setup a text column in the tree view.
Not sure if this can be handled via glade.
svn path=/trunk/; revision=18922
Diffstat (limited to 'filter/filter-datespec.c')
-rw-r--r-- | filter/filter-datespec.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/filter/filter-datespec.c b/filter/filter-datespec.c index 8feb6d8024..34f1ba61e7 100644 --- a/filter/filter-datespec.c +++ b/filter/filter-datespec.c @@ -427,13 +427,13 @@ button_clicked (GtkButton *button, FilterDatespec *fds) set_values (fds); g_signal_connect (GTK_OPTION_MENU (p->option_type)->menu, "deactivate", - GTK_SIGNAL_FUNC (set_option_type), fds); + G_CALLBACK (set_option_type), fds); g_signal_connect (GTK_OPTION_MENU (p->option_relative)->menu, "deactivate", - GTK_SIGNAL_FUNC (set_option_relative), fds); + G_CALLBACK (set_option_relative), fds); gtk_box_pack_start ((GtkBox *) dialog->vbox, toplevel, TRUE, TRUE, 3); - g_signal_connect (dialog, "response", GTK_SIGNAL_FUNC (dialog_response), fds); + g_signal_connect (dialog, "response", G_CALLBACK (dialog_response), fds); gtk_dialog_run (dialog); } @@ -450,7 +450,7 @@ get_widget (FilterElement *fe) button = gtk_button_new(); gtk_container_add (GTK_CONTAINER (button), fds->priv->label_button); - g_signal_connect (button, "clicked", GTK_SIGNAL_FUNC (button_clicked), fds); + g_signal_connect (button, "clicked", G_CALLBACK (button_clicked), fds); gtk_widget_show (button); gtk_widget_show (fds->priv->label_button); |