tools/pdbgen/pdb/edit.pdb apply Simon's changes (GIMP_OBJECT casts) to

2003-09-26  Manish Singh  <yosh@gimp.org>

        * tools/pdbgen/pdb/edit.pdb
        * tools/pdbgen/pdb/paths.pdb: apply Simon's changes (GIMP_OBJECT
	casts) to here, since they are generated files.
This commit is contained in:
Manish Singh 2003-09-26 16:56:05 +00:00 committed by Manish Singh
parent 9a8d07832d
commit 1af964a017
4 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2003-09-26 Manish Singh <yosh@gimp.org>
* tools/pdbgen/pdb/edit.pdb
* tools/pdbgen/pdb/paths.pdb: apply Simon's changes (GIMP_OBJECT
casts) to here, since they are generated files.
2003-09-26 Michael Natterer <mitch@gimp.org>
* app/display/gimpdisplayshell-callbacks.c: #include

View file

@ -341,7 +341,7 @@ edit_stroke_invoker (Gimp *gimp,
success = gimp_item_stroke (GIMP_ITEM (gimp_image_get_mask (gimage)),
drawable,
GIMP_OBJECT (tool_info->paint_info));
GIMP_OBJECT (tool_info->paint_info));
}
return procedural_db_return_args (&edit_stroke_proc, success);

View file

@ -173,7 +173,8 @@ HELP
tool_info = gimp_context_get_tool (gimp_get_current_context (gimp));
success = gimp_item_stroke (GIMP_ITEM (gimp_image_get_mask (gimage)),
drawable, tool_info->paint_info);
drawable,
GIMP_OBJECT (tool_info->paint_info));
}
CODE
);

View file

@ -310,7 +310,7 @@ HELP
tool_info = gimp_context_get_tool (gimp_get_current_context (gimp));
success = gimp_item_stroke (GIMP_ITEM (vectors), drawable,
tool_info->paint_info);
GIMP_OBJECT (tool_info->paint_info));
}
else
success = FALSE;