From c6c0635599b8540cb7f9395e95dd533bf866bf90 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Thu, 11 Apr 2013 11:03:26 +0100 Subject: [PATCH] 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 --- backends/telepathy/lib/tpf-persona-store.vala | 4 ++-- 1 file 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 _supported_fields; - internal Set _supported_fields_ro; + private SmallSet _supported_fields; + private Set _supported_fields_ro; private Account _account; -- 2.7.4