Enlightenment CVS committal

Author  : moom
Project : e17
Module  : proto

Dir     : e17/proto/etk/src/lib


Modified Files:
        etk_iconbox.c 


Log Message:
* [Iconbox] Fix etk_iconbox_icon_del()


===================================================================
RCS file: /cvs/e/e17/proto/etk/src/lib/etk_iconbox.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- etk_iconbox.c       4 Sep 2006 12:51:42 -0000       1.15
+++ etk_iconbox.c       5 Sep 2006 08:24:04 -0000       1.16
@@ -474,9 +474,9 @@
       return;
    iconbox = icon->iconbox;
    
-   if (iconbox->first_icon)
+   if (iconbox->first_icon == icon)
       iconbox->first_icon = icon->next;
-   if (iconbox->last_icon)
+   if (iconbox->last_icon == icon)
       iconbox->last_icon = icon->prev;
    if (icon->prev)
       icon->prev->next = icon->next;



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to