Minor code beautification

This commit is contained in:
Gergely Polonkai 2014-07-12 11:06:46 +02:00
parent 598a9f013c
commit f63d42dee9
1 changed files with 4 additions and 3 deletions

View File

@ -20,9 +20,10 @@ ag_app_peek_first_window(AgApp *app)
GList *l;
for (
l = gtk_application_get_windows(GTK_APPLICATION(app));
l;
l = g_list_next(l)) {
l = gtk_application_get_windows(GTK_APPLICATION(app));
l;
l = g_list_next(l)
) {
if (GTK_IS_WINDOW(l->data)) {
return GTK_WINDOW(l->data);
}