[folks] TpfPersonaStore: make _supported_fields, _supported_fields_ro private



commit c6c0635599b8540cb7f9395e95dd533bf866bf90
Author: Simon McVittie <simon mcvittie collabora co uk>
Date:   Thu Apr 11 11:03:26 2013 +0100

    TpfPersonaStore: make _supported_fields, _supported_fields_ro private
    
    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 |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/backends/telepathy/lib/tpf-persona-store.vala b/backends/telepathy/lib/tpf-persona-store.vala
index 4c60caa..d1a666d 100644
--- a/backends/telepathy/lib/tpf-persona-store.vala
+++ b/backends/telepathy/lib/tpf-persona-store.vala
@@ -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;
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]