diff options
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 */ |