renamed function gimp_controller_wheel_scrolled() to

2004-06-24  Michael Natterer  <mitch@gimp.org>

	* app/widgets/gimpcontrollerwheel.[ch]: renamed function
	gimp_controller_wheel_scrolled() to
	gimp_controller_wheel_scroll().

	* app/display/gimpdisplayshell-callbacks.c
	(gimp_display_shell_canvas_tool_events): changed accordingly.
This commit is contained in:
Michael Natterer 2004-06-24 15:29:19 +00:00 committed by Michael Natterer
parent c0aa8fee88
commit 11dfbae2f6
4 changed files with 14 additions and 5 deletions

View File

@ -1,3 +1,12 @@
2004-06-24 Michael Natterer <mitch@gimp.org>
* app/widgets/gimpcontrollerwheel.[ch]: renamed function
gimp_controller_wheel_scrolled() to
gimp_controller_wheel_scroll().
* app/display/gimpdisplayshell-callbacks.c
(gimp_display_shell_canvas_tool_events): changed accordingly.
2004-06-24 Michael Natterer <mitch@gimp.org>
* etc/controllerrc: fix typo in wheel controller mapping.

View File

@ -883,8 +883,8 @@ gimp_display_shell_canvas_tool_events (GtkWidget *canvas,
wheel = gimp_controllers_get_wheel (gimp);
if (wheel &&
gimp_controller_wheel_scrolled (GIMP_CONTROLLER_WHEEL (wheel),
sevent))
gimp_controller_wheel_scroll (GIMP_CONTROLLER_WHEEL (wheel),
sevent))
return TRUE;
direction = sevent->direction;

View File

@ -255,8 +255,8 @@ gimp_controller_wheel_get_event_blurb (GimpController *controller,
}
gboolean
gimp_controller_wheel_scrolled (GimpControllerWheel *wheel,
const GdkEventScroll *sevent)
gimp_controller_wheel_scroll (GimpControllerWheel *wheel,
const GdkEventScroll *sevent)
{
gint i;

View File

@ -50,7 +50,7 @@ struct _GimpControllerWheelClass
GType gimp_controller_wheel_get_type (void) G_GNUC_CONST;
gboolean gimp_controller_wheel_scrolled (GimpControllerWheel *wheel,
gboolean gimp_controller_wheel_scroll (GimpControllerWheel *wheel,
const GdkEventScroll *sevent);