From 9972a1813edc34fbb0c8745c3ea41c50e1e67173 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Wed, 28 Sep 2011 04:42:54 +0200 Subject: [PATCH] testgtk: Simplify code Use a for loop for iterating. --- tests/testgtk.c | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/tests/testgtk.c b/tests/testgtk.c index 37ba800de6..932e6b7262 100644 --- a/tests/testgtk.c +++ b/tests/testgtk.c @@ -5255,13 +5255,9 @@ make_focus_table (GList **list) table = gtk_table_new (5, 5, FALSE); - i = 0; - j = 0; - - while (i < 5) + for (i = 0; i < 5; i++) { - j = 0; - while (j < 5) + for (j = 0; j < 5; j++) { GtkWidget *widget; @@ -5279,11 +5275,7 @@ make_focus_table (GList **list) GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 5, 5); - - ++j; } - - ++i; } *list = g_list_reverse (*list);