This files should have gone with my last comitt...

This commit is contained in:
Michael Natterer 2002-08-20 10:45:37 +00:00
parent 08c35cdfd9
commit 3f69d6cd50
2 changed files with 3 additions and 3 deletions

View file

@ -597,7 +597,7 @@ channel_get_show_masked_invoker (Gimp *gimp,
return_args = procedural_db_return_args (&channel_get_show_masked_proc, success);
if (success)
return_args[1].value.pdb_int = channel->show_masked;
return_args[1].value.pdb_int = gimp_channel_get_show_masked (channel);
return return_args;
}
@ -651,7 +651,7 @@ channel_set_show_masked_invoker (Gimp *gimp,
show_masked = args[1].value.pdb_int ? TRUE : FALSE;
if (success)
channel->show_masked = show_masked;
gimp_channel_set_show_masked (channel, show_masked);
return procedural_db_return_args (&channel_set_show_masked_proc, success);
}

View file

@ -606,7 +606,7 @@ selection_none_invoker (Gimp *gimp,
success = FALSE;
if (success)
gimp_image_mask_none (gimage);
gimp_image_mask_clear (gimage);
return procedural_db_return_args (&selection_none_proc, success);
}