This commit is contained in:
John Cupitt 2007-11-02 22:35:51 +00:00
parent 67e7cdc4d6
commit 6e9eb0b065
2 changed files with 5 additions and 5 deletions

2
TODO
View File

@ -1,4 +1,4 @@
- im__convert_saveable() is not propogating 'progress' for wtc2.jpg - talk about new progress system in im_add_eval_callback()?
- done jpeg, png ... make others dbl-buf writes too - done jpeg, png ... make others dbl-buf writes too

View File

@ -465,7 +465,7 @@ im_buffer_print( im_buffer_t *buffer )
printf( "bsize = %zd\n", buffer->bsize ); printf( "bsize = %zd\n", buffer->bsize );
} }
/* Make a parent/child link. /* Make a parent/child link. child is one of parent's inputs.
*/ */
void void
im__link_make( IMAGE *parent, IMAGE *child ) im__link_make( IMAGE *parent, IMAGE *child )
@ -478,11 +478,11 @@ im__link_make( IMAGE *parent, IMAGE *child )
/* Propogate the progress indicator. /* Propogate the progress indicator.
*/ */
if( !child->progress && parent->progress ) if( child->progress && !parent->progress )
child->progress = parent->progress; parent->progress = child->progress;
} }
/* Break link. /* Break link. child is one of parent's inputs.
*/ */
static void * static void *
im__link_break( IMAGE *parent, IMAGE *child ) im__link_break( IMAGE *parent, IMAGE *child )