Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_apps.c 


Log Message:
Fix.

===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_apps.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -3 -r1.21 -r1.22
--- e_apps.c    23 Feb 2005 11:38:28 -0000      1.21
+++ e_apps.c    23 Feb 2005 11:54:29 -0000      1.22
@@ -349,7 +349,9 @@
        
        a2 = a->subapps->data;
        a->subapps = evas_list_remove_list(a->subapps, a->subapps);
-       a2->parent = NULL;
+       /* Only remove the parent if it is us. */
+       if (a2->parent == a)
+         a2->parent = NULL;
        e_object_unref(E_OBJECT(a2));
      }
    for (l = a->references; l; l = l->next)
@@ -713,7 +715,10 @@
          {
           case ECORE_FILE_EVENT_NONE:
           case ECORE_FILE_EVENT_EXISTS:
+             break;
           case ECORE_FILE_EVENT_CREATED:
+             /* If a file is created, wait for the directory change to update
+              * the eapp. */
              break;
           case ECORE_FILE_EVENT_DELETED:
              /* If something is deleted, mark it as deleted




-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to