|
From: Enlightenment C. <no...@cv...> - 2007-08-26 13:09:10
|
Enlightenment CVS committal
Author : chaos
Project : e17
Module : apps/evfs
Dir : e17/apps/evfs/src/common
Modified Files:
evfs_cleanup.c evfs_io.c
Log Message:
* Allow persistence of search vfolders
===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/common/evfs_cleanup.c,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -3 -r1.36 -r1.37
--- evfs_cleanup.c 24 Aug 2007 06:06:20 -0000 1.36
+++ evfs_cleanup.c 26 Aug 2007 13:08:36 -0000 1.37
@@ -40,6 +40,8 @@
}
evas_list_free(command->file_command->files);
}
+
+ if (command->file_command->ref) free(command->file_command->ref);
}
void
===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/common/evfs_io.c,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -3 -r1.85 -r1.86
--- evfs_io.c 24 Aug 2007 06:06:20 -0000 1.85
+++ evfs_io.c 26 Aug 2007 13:08:36 -0000 1.86
@@ -192,8 +192,10 @@
"EvfsCommand_operation", op, _EvfsOperation_edd);
EET_DATA_DESCRIPTOR_ADD_BASIC(_EvfsCommand_edd, evfs_command,
"EvfsCommand_id", client_identifier, EET_T_INT);
- EET_DATA_DESCRIPTOR_ADD_BASIC(_EvfsCommand_edd, evfs_command,
+ EET_DATA_DESCRIPTOR_ADD_BASIC(_EvfsCommand_edd, evfs_command,
"EvfsCommand_options", options, EET_T_INT);
+ EET_DATA_DESCRIPTOR_ADD_LIST(_EvfsCommand_edd, evfs_command,
+ "EvfsCommand_entries", entries, _EvfsVfolderEntry_edd);
/*Base event EDD*/
_EvfsEvent_edd = _NEW_EDD(EvfsEvent);
|