aboutsummaryrefslogtreecommitdiffstats
path: root/filter/rule-context.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-11-02 13:16:24 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-11-02 13:16:24 +0800
commit236c15d106b4e740d4e3996e0649334ca8e13876 (patch)
treef98b59632e0bf927288650393e49060950c7ad9e /filter/rule-context.c
parent9fd7dd8e0ca925b2aa738b1c495ff3b41f0f2487 (diff)
downloadgsoc2013-evolution-236c15d106b4e740d4e3996e0649334ca8e13876.tar
gsoc2013-evolution-236c15d106b4e740d4e3996e0649334ca8e13876.tar.gz
gsoc2013-evolution-236c15d106b4e740d4e3996e0649334ca8e13876.tar.bz2
gsoc2013-evolution-236c15d106b4e740d4e3996e0649334ca8e13876.tar.lz
gsoc2013-evolution-236c15d106b4e740d4e3996e0649334ca8e13876.tar.xz
gsoc2013-evolution-236c15d106b4e740d4e3996e0649334ca8e13876.tar.zst
gsoc2013-evolution-236c15d106b4e740d4e3996e0649334ca8e13876.zip
Ported this too.
2002-11-02 Jeffrey Stedfast <fejj@ximian.com> * filter-context.c: Ported this too. * rule-context.c: Ported to glib2/GObject. svn path=/trunk/; revision=18502
Diffstat (limited to 'filter/rule-context.c')
-rw-r--r--filter/rule-context.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/filter/rule-context.c b/filter/rule-context.c
index 69de387100..4d0566943c 100644
--- a/filter/rule-context.c
+++ b/filter/rule-context.c
@@ -41,11 +41,11 @@
#define d(x)
-static int load(RuleContext * f, const char *system, const char *user);
-static int save(RuleContext * f, const char *user);
-static int revert(RuleContext *f, const char *user);
-static GList *rename_uri(RuleContext *f, const char *olduri, const char *newuri, GCompareFunc cmp);
-static GList *delete_uri(RuleContext *f, const char *uri, GCompareFunc cmp);
+static int load (RuleContext *rc, const char *system, const char *user);
+static int save (RuleContext *rc, const char *user);
+static int revert (RuleContext *rc, const char *user);
+static GList *rename_uri (RuleContext *rc, const char *olduri, const char *newuri, GCompareFunc cmp);
+static GList *delete_uri (RuleContext *rc, const char *uri, GCompareFunc cmp);
static void rule_context_class_init (RuleContextClass *klass);
static void rule_context_init (RuleContext *rc);