diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-12-26 13:26:18 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-12-26 13:26:18 +0800 |
commit | bd31f49bac99f21656dc7d0352d5b3f7385f71b2 (patch) | |
tree | b693ad7ec135bd8031458611b5ec485abd866463 /e-util/e-signature.c | |
parent | 5f83c587b2da0b9578117796253b7726e98748cc (diff) | |
download | gsoc2013-evolution-bd31f49bac99f21656dc7d0352d5b3f7385f71b2.tar.gz gsoc2013-evolution-bd31f49bac99f21656dc7d0352d5b3f7385f71b2.tar.zst gsoc2013-evolution-bd31f49bac99f21656dc7d0352d5b3f7385f71b2.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'e-util/e-signature.c')
-rw-r--r-- | e-util/e-signature.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/e-util/e-signature.c b/e-util/e-signature.c index 2d8da48c12..ea6636c055 100644 --- a/e-util/e-signature.c +++ b/e-util/e-signature.c @@ -542,9 +542,13 @@ e_signature_to_xml (ESignature *signature) string = e_signature_get_filename (signature); if (string != NULL) { - node = xmlNewTextChild (root, NULL, (xmlChar *) "filename", (xmlChar *) string); + node = xmlNewTextChild ( + root, NULL, (xmlChar *) "filename", + (xmlChar *) string); if (e_signature_get_is_script (signature)) - xmlSetProp (node, (xmlChar *) "script", (xmlChar *) "true"); + xmlSetProp ( + node, (xmlChar *) "script", + (xmlChar *) "true"); } } else { /* this is to make Evolution-1.4 and older 1.5 versions happy */ |