minor code cleanup.
2006-07-28 Michael Natterer <mitch@gimp.org> * app/tools/gimptoolcontrol.[ch]: minor code cleanup.
This commit is contained in:

committed by
Michael Natterer

parent
04c16c08b5
commit
506d7a56c2
@ -1,3 +1,7 @@
|
||||
2006-07-28 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/tools/gimptoolcontrol.[ch]: minor code cleanup.
|
||||
|
||||
2006-07-28 Simon Budig <simon@gimp.org>
|
||||
|
||||
* tools/pdbgen/pdb/vectors.pdb: implemented gimp-vectors-to-selection.
|
||||
|
@ -320,11 +320,11 @@ gimp_tool_control_set_tool_cursor (GimpToolControl *control,
|
||||
|
||||
void
|
||||
gimp_tool_control_set_cursor_modifier (GimpToolControl *control,
|
||||
GimpCursorModifier cmodifier)
|
||||
GimpCursorModifier modifier)
|
||||
{
|
||||
g_return_if_fail (GIMP_IS_TOOL_CONTROL (control));
|
||||
|
||||
control->cursor_modifier = cmodifier;
|
||||
control->cursor_modifier = modifier;
|
||||
}
|
||||
|
||||
void
|
||||
@ -347,11 +347,11 @@ gimp_tool_control_set_toggle_tool_cursor (GimpToolControl *control,
|
||||
|
||||
void
|
||||
gimp_tool_control_set_toggle_cursor_modifier (GimpToolControl *control,
|
||||
GimpCursorModifier cmodifier)
|
||||
GimpCursorModifier modifier)
|
||||
{
|
||||
g_return_if_fail (GIMP_IS_TOOL_CONTROL (control));
|
||||
|
||||
control->toggle_cursor_modifier = cmodifier;
|
||||
control->toggle_cursor_modifier = modifier;
|
||||
}
|
||||
|
||||
GimpCursorType
|
||||
|
@ -134,13 +134,13 @@ void gimp_tool_control_set_cursor (GimpToolControl *control,
|
||||
void gimp_tool_control_set_tool_cursor (GimpToolControl *control,
|
||||
GimpToolCursorType cursor);
|
||||
void gimp_tool_control_set_cursor_modifier (GimpToolControl *control,
|
||||
GimpCursorModifier cmodifier);
|
||||
GimpCursorModifier modifier);
|
||||
void gimp_tool_control_set_toggle_cursor (GimpToolControl *control,
|
||||
GimpCursorType cursor);
|
||||
void gimp_tool_control_set_toggle_tool_cursor (GimpToolControl *control,
|
||||
GimpToolCursorType cursor);
|
||||
void gimp_tool_control_set_toggle_cursor_modifier (GimpToolControl *control,
|
||||
GimpCursorModifier cmodifier);
|
||||
GimpCursorModifier modifier);
|
||||
|
||||
GimpCursorType
|
||||
gimp_tool_control_get_cursor (GimpToolControl *control);
|
||||
|
Reference in New Issue
Block a user