~ubuntu-branches/ubuntu/maverick/evolution-data-server/maverick-proposed

« back to all changes in this revision

Viewing changes to libedataserver/e-source-group.c

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-05-17 17:02:06 UTC
  • mfrom: (1.1.79 upstream) (1.6.12 experimental)
  • Revision ID: james.westby@ubuntu.com-20100517170206-4ufr52vwrhh26yh0
Tags: 2.30.1-1ubuntu1
* Merge from debian experimental. Remaining change:
  (LP: #42199, #229669, #173703, #360344, #508494)
  + debian/control:
    - add Vcs-Bzr tag
    - don't use libgnome
    - Use Breaks instead of Conflicts against evolution 2.25 and earlier.
  + debian/evolution-data-server.install,
    debian/patches/45_libcamel_providers_version.patch:
    - use the upstream versioning, not a Debian-specific one 
  + debian/libedata-book1.2-dev.install, debian/libebackend-1.2-dev.install,
    debian/libcamel1.2-dev.install, debian/libedataserverui1.2-dev.install:
    - install html documentation
  + debian/rules:
    - don't build documentation it's shipped with the tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
source_changed_callback (ESource *source,
63
63
                         ESourceGroup *group)
64
64
{
65
 
        if (! group->priv->ignore_source_changed)
 
65
        if (!group->priv->ignore_source_changed)
66
66
                g_signal_emit (group, signals[CHANGED], 0);
67
67
}
68
68
 
489
489
                        g_signal_handlers_disconnect_by_func (source, source_changed_callback, group);
490
490
                }
491
491
 
492
 
                if (! changed && q != NULL) {
 
492
                if (!changed && q != NULL) {
493
493
                        if (q->data != p->data)
494
494
                                changed = TRUE;
495
495
                        q = q->next;
820
820
 *
821
821
 * Compares if @a is equivalent to @b.
822
822
 *
823
 
 * Return value: %TRUE if @a is equivalent to @b,
 
823
 * Returns: %TRUE if @a is equivalent to @b,
824
824
 * %FALSE otherwise.
 
825
 *
 
826
 * Since: 2.24
825
827
 **/
826
828
gboolean
827
829
e_source_group_equal (ESourceGroup *a, ESourceGroup *b)
865
867
 *
866
868
 * Compares if @a is equivalent to @b.
867
869
 *
868
 
 * Return value: %TRUE if @a is equivalent to @b,
 
870
 * Returns: %TRUE if @a is equivalent to @b,
869
871
 * %FALSE otherwise.
 
872
 *
 
873
 * Since: 2.24
870
874
 **/
871
875
gboolean
872
876
e_source_group_xmlstr_equal (const gchar *a, const gchar *b)
885
889
        return retval;
886
890
}
887
891
 
 
892
/**
 
893
 * e_source_group_get_property:
 
894
 *
 
895
 * Since: 1.12
 
896
 **/
888
897
gchar *
889
898
e_source_group_get_property (ESourceGroup *source_group,
890
899
                             const gchar *property)
897
906
        return g_strdup (g_hash_table_lookup (priv->properties, property));
898
907
}
899
908
 
 
909
/**
 
910
 * e_source_group_set_property:
 
911
 *
 
912
 * Since: 1.12
 
913
 **/
900
914
void
901
915
e_source_group_set_property (ESourceGroup *source_group,
902
916
                             const gchar *property,
915
929
        g_signal_emit (source_group, signals[CHANGED], 0);
916
930
}
917
931
 
 
932
/**
 
933
 * e_source_group_foreach_property:
 
934
 *
 
935
 * Since: 1.12
 
936
 **/
918
937
void
919
938
e_source_group_foreach_property (ESourceGroup *source_group, GHFunc func, gpointer data)
920
939
{