comparison src/view_file.c @ 784:16b3a5c8aedc

new notification system (used only in vflist for now)
author nadvornik
date Wed, 04 Jun 2008 21:12:47 +0000
parents d6a7fb4b8e7c
children a2209b1f769d
comparison
equal deleted inserted replaced
783:d6a7fb4b8e7c 784:16b3a5c8aedc
752 { 752 {
753 gint ret = FALSE; 753 gint ret = FALSE;
754 754
755 switch(vf->type) 755 switch(vf->type)
756 { 756 {
757 case FILEVIEW_LIST: ret = vflist_maint_renamed(vf, fd); break; 757 // case FILEVIEW_LIST: ret = vflist_maint_renamed(vf, fd); break;
758 case FILEVIEW_ICON: ret = vficon_maint_renamed(vf, fd); break; 758 case FILEVIEW_ICON: ret = vficon_maint_renamed(vf, fd); break;
759 } 759 }
760 760
761 return ret; 761 return ret;
762 } 762 }
765 { 765 {
766 gint ret = FALSE; 766 gint ret = FALSE;
767 767
768 switch(vf->type) 768 switch(vf->type)
769 { 769 {
770 case FILEVIEW_LIST: ret = vflist_maint_removed(vf, fd, ignore_list); break; 770 // case FILEVIEW_LIST: ret = vflist_maint_removed(vf, fd, ignore_list); break;
771 case FILEVIEW_ICON: ret = vficon_maint_removed(vf, fd, ignore_list); break; 771 case FILEVIEW_ICON: ret = vficon_maint_removed(vf, fd, ignore_list); break;
772 } 772 }
773 773
774 return ret; 774 return ret;
775 } 775 }
778 { 778 {
779 gint ret = FALSE; 779 gint ret = FALSE;
780 780
781 switch(vf->type) 781 switch(vf->type)
782 { 782 {
783 case FILEVIEW_LIST: ret = vflist_maint_moved(vf, fd, ignore_list); break; 783 // case FILEVIEW_LIST: ret = vflist_maint_moved(vf, fd, ignore_list); break;
784 case FILEVIEW_ICON: ret = vficon_maint_moved(vf, fd, ignore_list); break; 784 case FILEVIEW_ICON: ret = vficon_maint_moved(vf, fd, ignore_list); break;
785 } 785 }
786 786
787 return ret; 787 return ret;
788 } 788 }