Create more consistent ordering of arguments

This commit is contained in:
Dave Davenport
2015-11-24 14:22:35 +01:00
parent 6978b146f0
commit 00a555b685
9 changed files with 15 additions and 15 deletions

View File

@@ -156,7 +156,7 @@ static void script_mode_destroy ( Switcher *sw )
sw->private_data = NULL;
}
}
static char *mgrv ( unsigned int selected_line, const Switcher *sw, G_GNUC_UNUSED int *state, int get_entry )
static char *mgrv ( const Switcher *sw, unsigned int selected_line, G_GNUC_UNUSED int *state, int get_entry )
{
ScriptModePrivateData *rmpd = sw->private_data;
return get_entry ? g_strdup ( rmpd->cmd_list[selected_line] ) : NULL;