Merge remote branch 'pwith/docs'
authorTravis Reitter <travis.reitter@collabora.co.uk>
Thu, 24 Jun 2010 15:22:33 +0000 (08:22 -0700)
committerTravis Reitter <travis.reitter@collabora.co.uk>
Thu, 24 Jun 2010 15:22:33 +0000 (08:22 -0700)
(Fixed)
Conflicts:
folks/individual-aggregator.vala
folks/persona-store.vala

1  2 
configure.ac
folks/individual-aggregator.vala
folks/individual.vala
folks/persona-store.vala
folks/presence.vala

diff --cc configure.ac
Simple merge
@@@ -22,12 -22,11 +22,17 @@@ using Folks
  using Gee;
  using GLib;
  
 +public errordomain Folks.IndividualAggregatorError
 +{
 +  STORE_NOT_FOUND,
 +  ADD_FAILED,
 +}
 +
+ /**
+  * Allows access to the {@link Individual}s which have been created through
+  * aggregation of all the {@link Persona}s provided by the various
+  * {@link Backend}s. This is the main interface for client applications.
+  */
  public class Folks.IndividualAggregator : Object
  {
    private BackendStore backend_store;
Simple merge
  using GLib;
  using Folks;
  
 +public errordomain Folks.PersonaStoreError
 +{
 +  INVALID_ARGUMENT,
 +  CREATE_FAILED,
 +}
 +
+ /**
+  * A store for {@link Persona}s.
+  */
  public abstract class Folks.PersonaStore : Object
  {
    public abstract signal void personas_added (GLib.List<Persona> personas);
Simple merge