renamed gimp_image_active_drawable() to gimp_image_get_active_drawable().
2007-07-19 Sven Neumann <sven@gimp.org> * app/core/gimpimage.[ch]: renamed gimp_image_active_drawable() to gimp_image_get_active_drawable(). * app/[lots of files] * tools/pdbgen/pdb/paths.pdb * tools/pdbgen/pdb/image.pdb: changed accordingly. svn path=/trunk/; revision=22958
This commit is contained in:
committed by
Sven Neumann
parent
f6c626fba3
commit
a5d10b2ff0
@ -107,7 +107,7 @@ gimp_display_shell_transform_xy (GimpDisplayShell *shell,
|
||||
{
|
||||
GimpItem *item;
|
||||
|
||||
item = GIMP_ITEM (gimp_image_active_drawable (shell->display->image));
|
||||
item = GIMP_ITEM (gimp_image_get_active_drawable (shell->display->image));
|
||||
gimp_item_offsets (item, &offset_x, &offset_y);
|
||||
}
|
||||
|
||||
@ -162,7 +162,7 @@ gimp_display_shell_untransform_xy (GimpDisplayShell *shell,
|
||||
{
|
||||
GimpItem *item;
|
||||
|
||||
item = GIMP_ITEM (gimp_image_active_drawable (shell->display->image));
|
||||
item = GIMP_ITEM (gimp_image_get_active_drawable (shell->display->image));
|
||||
gimp_item_offsets (item, &offset_x, &offset_y);
|
||||
}
|
||||
|
||||
@ -210,7 +210,7 @@ gimp_display_shell_transform_xy_f (GimpDisplayShell *shell,
|
||||
{
|
||||
GimpItem *item;
|
||||
|
||||
item = GIMP_ITEM (gimp_image_active_drawable (shell->display->image));
|
||||
item = GIMP_ITEM (gimp_image_get_active_drawable (shell->display->image));
|
||||
gimp_item_offsets (item, &offset_x, &offset_y);
|
||||
}
|
||||
|
||||
@ -257,7 +257,7 @@ gimp_display_shell_untransform_xy_f (GimpDisplayShell *shell,
|
||||
{
|
||||
GimpItem *item;
|
||||
|
||||
item = GIMP_ITEM (gimp_image_active_drawable (shell->display->image));
|
||||
item = GIMP_ITEM (gimp_image_get_active_drawable (shell->display->image));
|
||||
gimp_item_offsets (item, &offset_x, &offset_y);
|
||||
}
|
||||
|
||||
@ -294,7 +294,7 @@ gimp_display_shell_transform_points (GimpDisplayShell *shell,
|
||||
{
|
||||
GimpItem *item;
|
||||
|
||||
item = GIMP_ITEM (gimp_image_active_drawable (shell->display->image));
|
||||
item = GIMP_ITEM (gimp_image_get_active_drawable (shell->display->image));
|
||||
gimp_item_offsets (item, &offset_x, &offset_y);
|
||||
}
|
||||
|
||||
@ -346,7 +346,7 @@ gimp_display_shell_transform_coords (GimpDisplayShell *shell,
|
||||
{
|
||||
GimpItem *item;
|
||||
|
||||
item = GIMP_ITEM (gimp_image_active_drawable (shell->display->image));
|
||||
item = GIMP_ITEM (gimp_image_get_active_drawable (shell->display->image));
|
||||
gimp_item_offsets (item, &offset_x, &offset_y);
|
||||
}
|
||||
|
||||
@ -398,7 +398,7 @@ gimp_display_shell_transform_segments (GimpDisplayShell *shell,
|
||||
{
|
||||
GimpItem *item;
|
||||
|
||||
item = GIMP_ITEM (gimp_image_active_drawable (shell->display->image));
|
||||
item = GIMP_ITEM (gimp_image_get_active_drawable (shell->display->image));
|
||||
gimp_item_offsets (item, &offset_x, &offset_y);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user