diff --git a/src/contacts-store.vala b/src/contacts-store.vala index 531c44686e534cfc309b827bbfcaaf024d5253b4..6fd648952beffd73750311f2ef71187573094061 100644 --- a/src/contacts-store.vala +++ b/src/contacts-store.vala @@ -29,11 +29,6 @@ public class Contacts.Store : GLib.Object { public IndividualAggregator aggregator { get; private set; } public BackendStore backend_store { get { return this.aggregator.backend_store; } } - private GLib.ListStore _address_books = new GLib.ListStore (typeof (PersonaStore)); - public GLib.ListModel address_books { - get { return this._address_books; } - } - // Base list model, built from all contacts we obtain through libfolks private GLib.ListStore base_model = new ListStore (typeof (Individual)); @@ -51,6 +46,11 @@ public class Contacts.Store : GLib.Object { get { return this.filter_model; } } + private GLib.ListStore _address_books = new GLib.ListStore (typeof (PersonaStore)); + public GLib.ListModel address_books { + get { return this._address_books; } + } + public Gee.HashMultiMap dont_suggest_link; private void read_dont_suggest_db () {