Fix the signatures of find_next_mark_cb() and find_next_mark_cb() to

match their declarations, and mark the "action" argument as unused.

svn path=/trunk/; revision=18446
This commit is contained in:
Guy Harris 2006-06-13 05:36:27 +00:00
parent f51e366267
commit c922f5e48e
1 changed files with 2 additions and 2 deletions

View File

@ -650,13 +650,13 @@ reftime_frame_cb(GtkWidget *w _U_, gpointer data _U_, REFTIME_ACTION_E action)
}
void
find_next_mark_cb(GtkWidget *w _U_, gpointer data _U_, REFTIME_ACTION_E action)
find_next_mark_cb(GtkWidget *w _U_, gpointer data _U_, int action _U_)
{
find_previous_next_frame_with_filter("frame.marked == TRUE", FALSE);
}
void
find_prev_mark_cb(GtkWidget *w _U_, gpointer data _U_, REFTIME_ACTION_E action)
find_prev_mark_cb(GtkWidget *w _U_, gpointer data _U_, int action _U_)
{
find_previous_next_frame_with_filter("frame.marked == TRUE", TRUE);
}