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

Removed dup function wScreenSearchForRootWindow

The function wScreenSearchForRootWindow is exactly like wScreenForRootWindow
so can be removed swapping the function call.
This commit is contained in:
Rodolfo García Peñas (kix)
2013-04-03 20:01:45 +02:00
committed by Carlos R. Mafra
parent a401dcbdf6
commit 052efedd93
3 changed files with 2 additions and 24 deletions

View File

@@ -944,7 +944,7 @@ static void handleClientMessage(XEvent * event)
if (!wwin->flags.miniaturized)
wIconifyWindow(wwin);
} else if (event->xclient.message_type == _XA_WM_COLORMAP_NOTIFY && event->xclient.format == 32) {
WScreen *scr = wScreenSearchForRootWindow(event->xclient.window);
WScreen *scr = wScreenForRootWindow(event->xclient.window);
if (!scr)
return;
@@ -1034,7 +1034,7 @@ static void handleClientMessage(XEvent * event)
break;
}
} else if (event->xclient.message_type == _XA_WM_IGNORE_FOCUS_EVENTS) {
WScreen *scr = wScreenSearchForRootWindow(event->xclient.window);
WScreen *scr = wScreenForRootWindow(event->xclient.window);
if (!scr)
return;
scr->flags.ignore_focus_events = event->xclient.data.l[0] ? 1 : 0;