aboutsummaryrefslogtreecommitdiffstats
path: root/filter/rule-context.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-08-18 00:35:55 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-08-18 00:35:55 +0800
commit387ff45e5e9a55234db048b0ffc9312a2cb9d9ca (patch)
treec6702ac82305896b43220e0645f4ad096acc8b52 /filter/rule-context.c
parentc5f6d53e8688c2e4629439eec729d988fe4ddf67 (diff)
downloadgsoc2013-evolution-387ff45e5e9a55234db048b0ffc9312a2cb9d9ca.tar
gsoc2013-evolution-387ff45e5e9a55234db048b0ffc9312a2cb9d9ca.tar.gz
gsoc2013-evolution-387ff45e5e9a55234db048b0ffc9312a2cb9d9ca.tar.bz2
gsoc2013-evolution-387ff45e5e9a55234db048b0ffc9312a2cb9d9ca.tar.lz
gsoc2013-evolution-387ff45e5e9a55234db048b0ffc9312a2cb9d9ca.tar.xz
gsoc2013-evolution-387ff45e5e9a55234db048b0ffc9312a2cb9d9ca.tar.zst
gsoc2013-evolution-387ff45e5e9a55234db048b0ffc9312a2cb9d9ca.zip
Added key accelerators.
2001-08-15 Jeffrey Stedfast <fejj@ximian.com> * filter.glade: Added key accelerators. svn path=/trunk/; revision=12157
Diffstat (limited to 'filter/rule-context.c')
-rw-r--r--filter/rule-context.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/filter/rule-context.c b/filter/rule-context.c
index cf5d13acb7..61e422eeb1 100644
--- a/filter/rule-context.c
+++ b/filter/rule-context.c
@@ -75,45 +75,45 @@ rule_context_get_type(void)
}
static void
-rule_context_class_init(RuleContextClass * class)
+rule_context_class_init (RuleContextClass * class)
{
GtkObjectClass *object_class;
-
+
object_class = (GtkObjectClass *) class;
parent_class = gtk_type_class(gtk_object_get_type());
-
+
object_class->finalize = rule_context_finalise;
-
+
/* override methods */
class->load = load;
class->save = save;
-
+
/* signals */
-
+
gtk_object_class_add_signals(object_class, signals, LAST_SIGNAL);
}
static void
-rule_context_init(RuleContext * o)
+rule_context_init (RuleContext * o)
{
- o->priv = g_malloc0(sizeof(*o->priv));
-
- o->part_set_map = g_hash_table_new(g_str_hash, g_str_equal);
- o->rule_set_map = g_hash_table_new(g_str_hash, g_str_equal);
+ o->priv = g_malloc0 (sizeof (*o->priv));
+
+ o->part_set_map = g_hash_table_new (g_str_hash, g_str_equal);
+ o->rule_set_map = g_hash_table_new (g_str_hash, g_str_equal);
}
static void
-free_part_set(struct _part_set_map *map, void *data)
+free_part_set (struct _part_set_map *map, void *data)
{
- g_free(map->name);
- g_free(map);
+ g_free (map->name);
+ g_free (map);
}
static void
-free_rule_set(struct _rule_set_map *map, void *data)
+free_rule_set (struct _rule_set_map *map, void *data)
{
- g_free(map->name);
- g_free(map);
+ g_free (map->name);
+ g_free (map);
}
static void