[folks] core: use always-writeable instead of is-writeable
- From: Raul Gutierrez Segales <raulgs src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [folks] core: use always-writeable instead of is-writeable
- Date: Wed, 14 Sep 2011 20:44:56 +0000 (UTC)
commit 25e75ed385d2733bd0b6f7390dbd288ec7c058dd
Author: Raul Gutierrez Segales <rgs collabora co uk>
Date: Thu Sep 8 18:12:56 2011 +0100
core: use always-writeable instead of is-writeable
Helps: https://bugzilla.gnome.org/show_bug.cgi?id=658324
folks/backend-store.vala | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/folks/backend-store.vala b/folks/backend-store.vala
index 4a55d83..b6924f1 100644
--- a/folks/backend-store.vala
+++ b/folks/backend-store.vala
@@ -213,13 +213,16 @@ public class Folks.BackendStore : Object {
assert_not_reached ();
}
+ var writeable_props = string.joinv (",",
+ persona_store.always_writeable_properties);
+
debug.print_heading (domain, level, "PersonaStore (%p)",
persona_store);
debug.print_key_value_pairs (domain, level,
"Ref. count", this.ref_count.to_string (),
"ID", persona_store.id,
"Prepared?", persona_store.is_prepared ? "yes" : "no",
- "Writeable?", persona_store.is_writeable ? "yes" : "no",
+ "Always writeable properties", writeable_props,
"Quiescent?", persona_store.is_quiescent ? "yes" : "no",
"Trust level", trust_level,
"Persona count", persona_store.personas.size.to_string ()
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]