mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00
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:
parent
9a8d07832d
commit
1af964a017
4 changed files with 10 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
);
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue