aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-vfolder-context.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2007-11-15 06:04:21 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2007-11-15 06:04:21 +0800
commit9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91 (patch)
tree2e1e96f33404781354c422a7e9beaf458ebeb655 /mail/em-vfolder-context.c
parent7e8f8bb9e5167b0219b48ab3e8062080d3740b0a (diff)
downloadgsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar
gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.gz
gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.bz2
gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.lz
gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.xz
gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.zst
gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.zip
** Remove trailing whitespace from source code.
2007-11-14 Matthew Barnes <mbarnes@redhat.com> ** Remove trailing whitespace from source code. svn path=/trunk/; revision=34537
Diffstat (limited to 'mail/em-vfolder-context.c')
-rw-r--r--mail/em-vfolder-context.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/mail/em-vfolder-context.c b/mail/em-vfolder-context.c
index fda942869c..36ef03cf57 100644
--- a/mail/em-vfolder-context.c
+++ b/mail/em-vfolder-context.c
@@ -45,7 +45,7 @@ static void
em_vfolder_context_class_init(EMVFolderContextClass *klass)
{
parent_class = g_type_class_ref(RULE_TYPE_CONTEXT);
-
+
((GObjectClass *)klass)->finalize = em_vfolder_context_finalise;
((RuleContextClass *)klass)->new_element = vfolder_new_element;
}
@@ -55,7 +55,7 @@ em_vfolder_context_init(EMVFolderContext *vc)
{
rule_context_add_part_set((RuleContext *) vc, "partset", filter_part_get_type(),
rule_context_add_part, rule_context_next_part);
-
+
rule_context_add_rule_set((RuleContext *) vc, "ruleset", em_vfolder_rule_get_type(),
rule_context_add_rule, rule_context_next_rule);
@@ -66,7 +66,7 @@ GType
em_vfolder_context_get_type(void)
{
static GType type = 0;
-
+
if (!type) {
static const GTypeInfo info = {
sizeof(EMVFolderContextClass),
@@ -79,10 +79,10 @@ em_vfolder_context_get_type(void)
0, /* n_preallocs */
(GInstanceInitFunc) em_vfolder_context_init,
};
-
+
type = g_type_register_static(RULE_TYPE_CONTEXT, "EMVFolderContext", &info, 0);
}
-
+
return type;
}
@@ -90,7 +90,7 @@ em_vfolder_context_get_type(void)
* em_vfolder_context_new:
*
* Create a new EMVFolderContext object.
- *
+ *
* Return value: A new #EMVFolderContext object.
**/
EMVFolderContext *