[evolution/gnome-2-28] Bug #593872 - Forgets which signature is assigned to which account
- From: Milan Crha <mcrha src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [evolution/gnome-2-28] Bug #593872 - Forgets which signature is assigned to which account
- Date: Wed, 2 Sep 2009 16:36:15 +0000 (UTC)
commit 91e5b11343eec5c845829b155148b69c18c4e9cf
Author: Milan Crha <mcrha redhat com>
Date: Wed Sep 2 18:36:46 2009 +0200
Bug #593872 - Forgets which signature is assigned to which account
e-util/e-signature.c | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
---
diff --git a/e-util/e-signature.c b/e-util/e-signature.c
index 1b22dba..2d8da48 100644
--- a/e-util/e-signature.c
+++ b/e-util/e-signature.c
@@ -445,8 +445,13 @@ e_signature_set_from_xml (ESignature *signature, const gchar *xml)
return FALSE;
}
- if (!signature->priv->uid)
- xml_set_prop (node, "uid", &signature->priv->uid);
+ buf = NULL;
+ xml_set_prop (node, "uid", &buf);
+
+ if (buf && *buf) {
+ g_free (signature->priv->uid);
+ signature->priv->uid = buf;
+ }
changed |= xml_set_prop (node, "name", &signature->priv->name);
changed |= xml_set_bool (node, "auto", &signature->priv->autogenerated);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]