1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-21 05:18:06 +01:00

Coding-style cleanup

Code style cleanup in multiple files. Tabs, spaces, curly brackets,...
This commit is contained in:
Rodolfo García Peñas (kix)
2012-03-30 15:35:19 +02:00
committed by Carlos R. Mafra
parent 1a0e665e58
commit aab9028fc2
6 changed files with 69 additions and 76 deletions

View File

@@ -387,14 +387,14 @@ static WMArray *makeWindowListArray(WWindow *curwin, int include_unmapped, Bool
if (((!fl && canReceiveFocus(wwin) > 0) || (fl && canReceiveFocus(wwin) < 0)) &&
(wwin->flags.mapped || include_unmapped)) {
if (class_only) {
if (!wwin->wm_class || !curwin->wm_class)
continue;
if (strcmp(wwin->wm_class, curwin->wm_class))
continue;
if (!wwin->wm_class || !curwin->wm_class)
continue;
if (strcmp(wwin->wm_class, curwin->wm_class))
continue;
}
if (!WFLAGP(wwin, skip_switchpanel))
WMAddToArray(windows, wwin);
WMAddToArray(windows, wwin);
}
}
wwin = curwin;