comparison src/utilops.c @ 761:a2dda8e61e0f

another fix in notification
author nadvornik
date Tue, 27 May 2008 18:37:15 +0000
parents a083017752fc
children 7148e125bf23
comparison
equal deleted inserted replaced
760:649b44dd558b 761:a2dda8e61e0f
584 { 584 {
585 FileData *fd = list->data; 585 FileData *fd = list->data;
586 list = list->next; 586 list = list->next;
587 587
588 if (!(flags & EDITOR_ERROR_MASK)) /* files were successfully deleted, call the maint functions */ 588 if (!(flags & EDITOR_ERROR_MASK)) /* files were successfully deleted, call the maint functions */
589 {
590 file_data_sc_apply_ci(fd);
589 file_data_sc_notify_ci(fd); 591 file_data_sc_notify_ci(fd);
592 }
590 593
591 ud->flist = g_list_remove(ud->flist, fd); 594 ud->flist = g_list_remove(ud->flist, fd);
592 file_data_sc_free_ci(fd); 595 file_data_sc_free_ci(fd);
593 file_data_unref(fd); 596 file_data_unref(fd);
594 } 597 }