core: use always-writeable instead of is-writeable
authorRaul Gutierrez Segales <rgs@collabora.co.uk>
Thu, 8 Sep 2011 17:12:56 +0000 (18:12 +0100)
committerRaul Gutierrez Segales <rgs@collabora.co.uk>
Wed, 14 Sep 2011 20:16:36 +0000 (21:16 +0100)
Helps: https://bugzilla.gnome.org/show_bug.cgi?id=658324

folks/backend-store.vala

index 4a55d83..b6924f1 100644 (file)
@@ -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 ()