aboutsummaryrefslogtreecommitdiffstats
path: root/filter/vfolder-rule.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2002-11-26 19:25:51 +0800
committerMichael Zucci <zucchi@src.gnome.org>2002-11-26 19:25:51 +0800
commit93723877699c0a64fd25d8dcb11289359710bc6e (patch)
treee89cc76be1d472f2ca763140db6b8c75baa6c1c3 /filter/vfolder-rule.c
parentfb5e3d7237caed2397643f7e3d1e89572567bc64 (diff)
downloadgsoc2013-evolution-93723877699c0a64fd25d8dcb11289359710bc6e.tar
gsoc2013-evolution-93723877699c0a64fd25d8dcb11289359710bc6e.tar.gz
gsoc2013-evolution-93723877699c0a64fd25d8dcb11289359710bc6e.tar.bz2
gsoc2013-evolution-93723877699c0a64fd25d8dcb11289359710bc6e.tar.lz
gsoc2013-evolution-93723877699c0a64fd25d8dcb11289359710bc6e.tar.xz
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/vfolder-rule.c')
-rw-r--r--filter/vfolder-rule.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/filter/vfolder-rule.c b/filter/vfolder-rule.c
index 923f24a55b..bf52e825c1 100644
--- a/filter/vfolder-rule.c
+++ b/filter/vfolder-rule.c
@@ -354,8 +354,8 @@ static struct {
char *name;
GtkSignalFunc func;
} edit_buttons[] = {
- { "source_add", GTK_SIGNAL_FUNC (source_add) },
- { "source_remove", GTK_SIGNAL_FUNC (source_remove) },
+ { "source_add", G_CALLBACK (source_add) },
+ { "source_remove", G_CALLBACK (source_remove) },
};
static void
@@ -525,7 +525,7 @@ get_widget (FilterRule *fr, RuleContext *rc)
gtk_list_store_set (data->model, &iter, 0, source, -1);
}
- g_signal_connect (data->list, "cursor-changed", GTK_SIGNAL_FUNC (select_source), data);
+ g_signal_connect (data->list, "cursor-changed", G_CALLBACK (select_source), data);
omenu = (GtkOptionMenu *) glade_xml_get_widget (gui, "source_option");
l = GTK_MENU_SHELL (omenu->menu)->children;
@@ -544,7 +544,7 @@ get_widget (FilterRule *fr, RuleContext *rc)
g_warning ("Glade file " FILTER_GLADEDIR "/filter.glade out of sync with editor code");
}
- g_signal_connect (item, "activate", GTK_SIGNAL_FUNC (select_source_with), data);
+ g_signal_connect (item, "activate", G_CALLBACK (select_source_with), data);
i++;
l = l->next;