app: rename process_stroke() and process_hover() to request_foo()

Because that's what we are doing by calling the functions: requesting
the emission of "stroke" and "hover" signals.
This commit is contained in:
Michael Natterer
2011-04-18 11:31:38 +02:00
parent 3fbbb9b333
commit e028195cf3
3 changed files with 8 additions and 8 deletions

View File

@ -445,7 +445,7 @@ gimp_motion_buffer_motion_event (GimpMotionBuffer *buffer,
}
void
gimp_motion_buffer_process_stroke (GimpMotionBuffer *buffer,
gimp_motion_buffer_request_stroke (GimpMotionBuffer *buffer,
GdkModifierType state,
guint32 time)
{
@ -495,7 +495,7 @@ gimp_motion_buffer_process_stroke (GimpMotionBuffer *buffer,
}
void
gimp_motion_buffer_process_hover (GimpMotionBuffer *buffer,
gimp_motion_buffer_request_hover (GimpMotionBuffer *buffer,
GdkModifierType state,
gboolean proximity)
{
@ -587,7 +587,7 @@ gimp_motion_buffer_event_queue_timeout (GimpMotionBuffer *buffer)
gimp_motion_buffer_push_event_history (buffer, &last_coords);
gimp_motion_buffer_process_stroke (buffer,
gimp_motion_buffer_request_stroke (buffer,
buffer->last_active_state,
buffer->last_read_motion_time);
}