Fix style

SVN revision: 23232
This commit is contained in:
sebastid 2006-06-07 08:48:52 +00:00 committed by sebastid
parent d048e276b4
commit 8664597e58
1 changed files with 7 additions and 7 deletions

View File

@ -1692,9 +1692,9 @@ _e_app_cb_monitor(void *data, Ecore_File_Monitor *em,
file = (char *)ecore_file_get_file((char *)path); file = (char *)ecore_file_get_file((char *)path);
if (!strcmp(file, ".order")) if (!strcmp(file, ".order"))
{ {
if ((event == ECORE_FILE_EVENT_CREATED_FILE) if ((event == ECORE_FILE_EVENT_CREATED_FILE) ||
|| (event == ECORE_FILE_EVENT_DELETED_FILE) (event == ECORE_FILE_EVENT_DELETED_FILE) ||
|| (event == ECORE_FILE_EVENT_MODIFIED)) (event == ECORE_FILE_EVENT_MODIFIED))
{ {
_e_app_subdir_rescan(app); _e_app_subdir_rescan(app);
} }
@ -1705,8 +1705,8 @@ _e_app_cb_monitor(void *data, Ecore_File_Monitor *em,
} }
else if (!strcmp(file, ".directory.eap")) else if (!strcmp(file, ".directory.eap"))
{ {
if ((event == ECORE_FILE_EVENT_CREATED_FILE) if ((event == ECORE_FILE_EVENT_CREATED_FILE) ||
|| (event == ECORE_FILE_EVENT_MODIFIED)) (event == ECORE_FILE_EVENT_MODIFIED))
{ {
e_app_fields_empty(app); e_app_fields_empty(app);
e_app_fields_fill(app, path); e_app_fields_fill(app, path);
@ -1775,8 +1775,8 @@ _e_app_cb_monitor(void *data, Ecore_File_Monitor *em,
} }
} }
} }
else if ((event == ECORE_FILE_EVENT_CREATED_FILE) else if ((event == ECORE_FILE_EVENT_CREATED_FILE) ||
|| (event == ECORE_FILE_EVENT_CREATED_DIRECTORY)) (event == ECORE_FILE_EVENT_CREATED_DIRECTORY))
{ {
/* FIXME: Check if someone wants a reference to this /* FIXME: Check if someone wants a reference to this
* app */ * app */