diff options
author | Eskil Heyn Olsen <eskil@src.gnome.org> | 1999-12-08 08:45:53 +0800 |
---|---|---|
committer | Eskil Heyn Olsen <eskil@src.gnome.org> | 1999-12-08 08:45:53 +0800 |
commit | 98b072ccedab8676f555b26d904bf95435f381f6 (patch) | |
tree | dc34986348bbb5218542cec3ca90d0039c5fb070 /calendar/calendar-conduit-control-applet.c | |
parent | b279ef22cc6ca184d08fc6a46a49756778bebbf6 (diff) | |
download | gsoc2013-evolution-98b072ccedab8676f555b26d904bf95435f381f6.tar gsoc2013-evolution-98b072ccedab8676f555b26d904bf95435f381f6.tar.gz gsoc2013-evolution-98b072ccedab8676f555b26d904bf95435f381f6.tar.bz2 gsoc2013-evolution-98b072ccedab8676f555b26d904bf95435f381f6.tar.lz gsoc2013-evolution-98b072ccedab8676f555b26d904bf95435f381f6.tar.xz gsoc2013-evolution-98b072ccedab8676f555b26d904bf95435f381f6.tar.zst gsoc2013-evolution-98b072ccedab8676f555b26d904bf95435f381f6.zip |
Capplets now sets first_sync on enable, this should make the conduit copy
* calendar-conduit-control-applet.c (setSettings): Capplets now
sets first_sync on enable, this should make the conduit copy old
entries from the pilot to gnomecal.
svn path=/trunk/; revision=1476
Diffstat (limited to 'calendar/calendar-conduit-control-applet.c')
-rw-r--r-- | calendar/calendar-conduit-control-applet.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/calendar/calendar-conduit-control-applet.c b/calendar/calendar-conduit-control-applet.c index 3c5b2d1b98..ae4bda428f 100644 --- a/calendar/calendar-conduit-control-applet.c +++ b/calendar/calendar-conduit-control-applet.c @@ -60,7 +60,10 @@ static void setSettings(GCalConduitCfg* conduitCfg) { if(conduitCfg->sync_type!=GnomePilotConduitSyncTypeCustom) - gpilotd_conduit_mgmt_enable(conduit,pilotId,conduitCfg->sync_type); + gpilotd_conduit_mgmt_enable_with_first_sync(conduit,pilotId, + conduitCfg->sync_type, + conduitCfg->sync_type, + TRUE); else gpilotd_conduit_mgmt_disable(conduit,pilotId); |