mirror of
https://github.com/0intro/wmii
synced 2024-11-25 23:30:24 +03:00
13 lines
252 B
C
13 lines
252 B
C
/* Copyright ©2006-2010 Kris Maglione <maglione.k at Gmail>
|
|
* See LICENSE file for license details.
|
|
*/
|
|
#include "event.h"
|
|
|
|
void
|
|
event_reparentnotify(XReparentEvent *ev) {
|
|
Window *w;
|
|
|
|
if((w = findwin(ev->event)))
|
|
event_handle(w, reparent, ev);
|
|
}
|