Fix another compiler warning about unused variables

This commit is contained in:
Matthias Clasen 2011-01-30 01:53:49 -05:00
parent 6dc142a50a
commit 2b631739c0

View File

@ -2503,11 +2503,9 @@ test_file (const gchar *filename)
if (GTK_IS_DIALOG (obj))
{
int response;
g_print ("Running dialog %s.\n",
gtk_widget_get_name (GTK_WIDGET (obj)));
response = gtk_dialog_run (GTK_DIALOG (obj));
gtk_dialog_run (GTK_DIALOG (obj));
}
else if (GTK_IS_WINDOW (obj))
{