TpfPersonaStore: make _supported_fields, _supported_fields_ro private
authorSimon McVittie <simon.mcvittie@collabora.co.uk>
Thu, 11 Apr 2013 10:03:26 +0000 (11:03 +0100)
committerSimon McVittie <simon.mcvittie@collabora.co.uk>
Thu, 11 Apr 2013 10:03:26 +0000 (11:03 +0100)
Making them "internal" means we end up #include'ing small-set.h, which
we don't install, so nothing can be built against the installed
libfolks-telepathy. Nothing outside this file uses those members
directly anyway.

Bug: https://bugzilla.gnome.org/show_bug.cgi?id=697542
Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
backends/telepathy/lib/tpf-persona-store.vala

index 4c60caa..d1a666d 100644 (file)
@@ -95,8 +95,8 @@ public class Tpf.PersonaStore : Folks.PersonaStore
   private bool _cache_needs_update = false;
 
   /* marshalled from ContactInfo.SupportedFields */
-  internal SmallSet<string> _supported_fields;
-  internal Set<string> _supported_fields_ro;
+  private SmallSet<string> _supported_fields;
+  private Set<string> _supported_fields_ro;
 
   private Account _account;