mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 19:30:10 +00:00
Fix another compiler warning about unused variables
This commit is contained in:
parent
6dc142a50a
commit
2b631739c0
@ -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))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user