diff options
| author | JP Rosevear <jpr@helixcode.com> | 2000-11-28 04:30:51 +0800 | 
|---|---|---|
| committer | JP Rosevear <jpr@src.gnome.org> | 2000-11-28 04:30:51 +0800 | 
| commit | dd896b147626e3f19477d1d19111fb691dbe45bd (patch) | |
| tree | 84ad8db9773b2fbdec8c4d9e1e4144a74b38b2dd /calendar | |
| parent | f0770f394c98335e3944a4d2af7fea7fbccf6200 (diff) | |
| download | gsoc2013-evolution-dd896b147626e3f19477d1d19111fb691dbe45bd.tar.gz gsoc2013-evolution-dd896b147626e3f19477d1d19111fb691dbe45bd.tar.zst gsoc2013-evolution-dd896b147626e3f19477d1d19111fb691dbe45bd.zip | |
Remove "complete" field
2000-11-27  JP Rosevear  <jpr@helixcode.com>
	* conduit/address-conduit.h: Remove "complete" field
	* conduit/address-conduit.c (print_local): Make it print useful debug
	info
	(print_remote): ditto
	(local_record_from_ecard): Make sure phone numbers get out to the pilot
	(ecard_from_remote_record): Set phone strings to "" if they are null
	(sequence_complete): unref the book view
	(view_cb): ref the book view
	(free_prepare): do nothing
	* backend/pas/pas-backend-file.c (pas_backend_file_book_view_free):
	Destroy the card lists with the rest of the view.
	(pas_backend_file_changes): Don't destroy the card lists here
	(pas_backend_file_book_view_free): Free the card/id lists in the
	change context here, the correct place.
	(pas_backend_file_changes): instead of here...
2000-11-27  JP Rosevear  <jpr@helixcode.com>
	* conduits/todo/todo-conduit.c (free_prepare): Ditto
	* conduits/calendar/calendar-conduit.c (free_prepare): Adjust
	free_prepare to the correct signal parameters.  Don't actually
	do anything - there is a semantic discrepancy that needs to be
	resolved.
2000-11-27  JP Rosevear  <jpr@helixcode.com>
	* providers/local/.cvsignore: shush
svn path=/trunk/; revision=6681
Diffstat (limited to 'calendar')
| -rw-r--r-- | calendar/ChangeLog | 9 | ||||
| -rw-r--r-- | calendar/conduits/calendar/calendar-conduit.c | 7 | ||||
| -rw-r--r-- | calendar/conduits/todo/todo-conduit.c | 9 | 
3 files changed, 12 insertions, 13 deletions
| diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 0fae81da76..c105c036cb 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,12 @@ +2000-11-27  JP Rosevear  <jpr@helixcode.com> + +	* conduits/todo/todo-conduit.c (free_prepare): Ditto + +	* conduits/calendar/calendar-conduit.c (free_prepare): Adjust  +	free_prepare to the correct signal parameters.  Don't actually +	do anything - there is a semantic discrepancy that needs to be +	resolved. +  2000-11-26  Damon Chaplin  <damon@helixcode.com>  	* gui/e-day-view.c (e_day_view_set_days_shown): == instead of =. diff --git a/calendar/conduits/calendar/calendar-conduit.c b/calendar/conduits/calendar/calendar-conduit.c index 7341d7a292..6e903b14f1 100644 --- a/calendar/conduits/calendar/calendar-conduit.c +++ b/calendar/conduits/calendar/calendar-conduit.c @@ -1046,18 +1046,13 @@ prepare (GnomePilotConduitSyncAbs *conduit,  static gint  free_prepare (GnomePilotConduitSyncAbs *conduit, -	      ECalLocalRecord *local, -	      GnomePilotRecord **remote, +	      GnomePilotRecord *remote,  	      ECalConduitContext *ctxt)  {  	LOG ("free_prepare: freeing\n"); -	g_return_val_if_fail (local != NULL, -1);  	g_return_val_if_fail (remote != NULL, -1); -	g_free (*remote); -	*remote = NULL; -          return 0;  } diff --git a/calendar/conduits/todo/todo-conduit.c b/calendar/conduits/todo/todo-conduit.c index b41dead5cc..0884af229d 100644 --- a/calendar/conduits/todo/todo-conduit.c +++ b/calendar/conduits/todo/todo-conduit.c @@ -269,7 +269,7 @@ local_record_to_pilot_record (EToDoLocalRecord *local,  	g_assert (local->comp != NULL);  	g_assert (local->todo != NULL ); -	LOG ("local_record_to_remote_record\n"); +	LOG ("local_record_to_pilot_record\n");  	p = g_new0 (GnomePilotRecord, 1); @@ -920,18 +920,13 @@ prepare (GnomePilotConduitSyncAbs *conduit,  static gint  free_prepare (GnomePilotConduitSyncAbs *conduit, -	      EToDoLocalRecord *local, -	      GnomePilotRecord **remote, +	      GnomePilotRecord *remote,  	      EToDoConduitContext *ctxt)  {  	LOG ("free_prepare: freeing\n"); -	g_return_val_if_fail (local != NULL, -1);  	g_return_val_if_fail (remote != NULL, -1); -	g_free (*remote); -	*remote = NULL; -          return 0;  } | 
