aboutsummaryrefslogtreecommitdiffstats
path: root/filter/e-rule-context.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2012-07-12 20:02:18 +0800
committerMatthew Barnes <mbarnes@redhat.com>2012-08-20 02:17:55 +0800
commitc85109fc322137596bf34cffc5445d568223c60d (patch)
tree711e6d5b2eb3d6c7780d1d01e20d980c67a77f9e /filter/e-rule-context.c
parent7d1751cc26a75166019917ec8c3b35e1083d27d6 (diff)
downloadgsoc2013-evolution-c85109fc322137596bf34cffc5445d568223c60d.tar
gsoc2013-evolution-c85109fc322137596bf34cffc5445d568223c60d.tar.gz
gsoc2013-evolution-c85109fc322137596bf34cffc5445d568223c60d.tar.bz2
gsoc2013-evolution-c85109fc322137596bf34cffc5445d568223c60d.tar.lz
gsoc2013-evolution-c85109fc322137596bf34cffc5445d568223c60d.tar.xz
gsoc2013-evolution-c85109fc322137596bf34cffc5445d568223c60d.tar.zst
gsoc2013-evolution-c85109fc322137596bf34cffc5445d568223c60d.zip
Coding style and whitespace cleanup.
Diffstat (limited to 'filter/e-rule-context.c')
-rw-r--r--filter/e-rule-context.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/filter/e-rule-context.c b/filter/e-rule-context.c
index c9079bc556..0f41b52c04 100644
--- a/filter/e-rule-context.c
+++ b/filter/e-rule-context.c
@@ -219,7 +219,7 @@ rule_context_load (ERuleContext *context,
}
root = xmlDocGetRootElement (systemdoc);
- if (root == NULL || strcmp ((gchar *)root->name, "filterdescription")) {
+ if (root == NULL || strcmp ((gchar *) root->name, "filterdescription")) {
gchar * err_msg;
err_msg = g_strdup_printf (
@@ -244,7 +244,7 @@ rule_context_load (ERuleContext *context,
if (part_map) {
rule = set->children;
while (rule) {
- if (!strcmp ((gchar *)rule->name, "part")) {
+ if (!strcmp ((gchar *) rule->name, "part")) {
EFilterPart *part =
E_FILTER_PART (g_object_new (
part_map->type, NULL, NULL));
@@ -262,7 +262,7 @@ rule_context_load (ERuleContext *context,
context->rule_set_map, set->name))) {
rule = set->children;
while (rule) {
- if (!strcmp ((gchar *)rule->name, "rule")) {
+ if (!strcmp ((gchar *) rule->name, "rule")) {
EFilterRule *part =
E_FILTER_RULE (g_object_new (
rule_map->type, NULL, NULL));
@@ -290,7 +290,7 @@ rule_context_load (ERuleContext *context,
if (rule_map) {
rule = set->children;
while (rule) {
- if (!strcmp ((gchar *)rule->name, "rule")) {
+ if (!strcmp ((gchar *) rule->name, "rule")) {
EFilterRule *part =
E_FILTER_RULE (g_object_new (
rule_map->type, NULL, NULL));
@@ -397,7 +397,7 @@ rule_context_revert (ERuleContext *context,
if (rule_map) {
rule = set->children;
while (rule) {
- if (!strcmp ((gchar *)rule->name, "rule")) {
+ if (!strcmp ((gchar *) rule->name, "rule")) {
EFilterRule *part =
E_FILTER_RULE (g_object_new (
rule_map->type, NULL, NULL));