app: fixing 2 argument type build warnings.

Introduced in commit 5e7d9d8 and completely overlooked by myself!
This commit is contained in:
Jehan 2017-03-29 15:20:25 +02:00
parent b734586324
commit 8fee058c1f
1 changed files with 2 additions and 2 deletions

View File

@ -378,7 +378,7 @@ quit_close_all_dialog_container_changed (GimpContainer *images,
* one's mind and not exist after the last save, for instance by * one's mind and not exist after the last save, for instance by
* hitting Esc quickly while the last save is in progress. * hitting Esc quickly while the last save is in progress.
*/ */
g_idle_add (quit_close_all_idle, private); g_idle_add ((GSourceFunc) quit_close_all_idle, private);
} }
else else
{ {
@ -608,7 +608,7 @@ quit_close_all_dialog_query_tooltip (GtkWidget *widget,
static gboolean static gboolean
quit_close_all_idle (QuitDialog *private) quit_close_all_idle (QuitDialog *private)
{ {
gtk_dialog_response (private->dialog, GTK_RESPONSE_OK); gtk_dialog_response (GTK_DIALOG (private->dialog), GTK_RESPONSE_OK);
return FALSE; return FALSE;
} }