diff options
author | Seth Alves <alves@src.gnome.org> | 2000-04-20 02:02:08 +0800 |
---|---|---|
committer | Seth Alves <alves@src.gnome.org> | 2000-04-20 02:02:08 +0800 |
commit | c5357bc38e9835032c14d262bd8d0f829147fcfe (patch) | |
tree | a8c2ec659325e6bdff361b4f9c1eb5c59f3e183c | |
parent | d8e30fdcb380d2a715a915c8278a024c07c12815 (diff) | |
download | gsoc2013-evolution-c5357bc38e9835032c14d262bd8d0f829147fcfe.tar gsoc2013-evolution-c5357bc38e9835032c14d262bd8d0f829147fcfe.tar.gz gsoc2013-evolution-c5357bc38e9835032c14d262bd8d0f829147fcfe.tar.bz2 gsoc2013-evolution-c5357bc38e9835032c14d262bd8d0f829147fcfe.tar.lz gsoc2013-evolution-c5357bc38e9835032c14d262bd8d0f829147fcfe.tar.xz gsoc2013-evolution-c5357bc38e9835032c14d262bd8d0f829147fcfe.tar.zst gsoc2013-evolution-c5357bc38e9835032c14d262bd8d0f829147fcfe.zip |
don't call save from here because in all cases the caller of remove_object
* pcs/cal-backend.c (remove_object): don't call save from here
because in all cases the caller of remove_object calls save
svn path=/trunk/; revision=2507
-rw-r--r-- | calendar/ChangeLog | 3 | ||||
-rw-r--r-- | calendar/pcs/cal-backend.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 516f5c393f..742daf2d22 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,8 @@ 2000-04-19 Seth Alves <alves@hungry.com> + * pcs/cal-backend.c (remove_object): don't call save from here + because in all cases the caller of remove_object calls save + * gui/calendar-commands.c (calendar_set_uri): calls gnome_calendar_open instead of checking on disk and calling load or create. diff --git a/calendar/pcs/cal-backend.c b/calendar/pcs/cal-backend.c index b9198c54d1..4cd7877e30 100644 --- a/calendar/pcs/cal-backend.c +++ b/calendar/pcs/cal-backend.c @@ -420,7 +420,7 @@ remove_object (CalBackend *backend, iCalObject *ico) g_list_free_1 (l); ical_object_destroy (ico); - save (backend); + /*save (backend);*/ } /* Load a calendar from a VObject */ |