~ubuntu-branches/ubuntu/saucy/evolution-data-server/saucy

« back to all changes in this revision

Viewing changes to camel/camel-offline-settings.c

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-10-08 12:58:16 UTC
  • mfrom: (181.1.7 quantal)
  • Revision ID: package-import@ubuntu.com-20121008125816-i3n76e8c0m64e7xp
Tags: 3.6.0-0ubuntu2
* Fix LP: #1038047 part 1 - Don't abort in e_source_registry_new* when a
  problem occurs connecting to the Dbus service
  - add debian/patches/dont-abort-in-e_source_registry_new.patch
  - update debian/patches/series
* Fix LP: #1038047 part 2 - libedataserver depends on
  evolution-data-server-common to ensure that the GSettings schemas are
  present
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
136
136
 **/
137
137
void
138
138
camel_offline_settings_set_stay_synchronized (CamelOfflineSettings *settings,
139
 
                                       gboolean stay_synchronized)
 
139
                                              gboolean stay_synchronized)
140
140
{
141
141
        g_return_if_fail (CAMEL_IS_OFFLINE_SETTINGS (settings));
142
142
 
143
 
        if ((settings->priv->stay_synchronized ? 1 : 0) == (stay_synchronized ? 1 : 0))
 
143
        if (settings->priv->stay_synchronized == stay_synchronized)
144
144
                return;
145
145
 
146
146
        settings->priv->stay_synchronized = stay_synchronized;