wmii/lib/libstuff/event/destroynotify.c
2010-05-27 03:58:02 -04:00

13 lines
257 B
C

/* Copyright ©2006-2010 Kris Maglione <maglione.k at Gmail>
* See LICENSE file for license details.
*/
#include "event.h"
void
event_destroynotify(XDestroyWindowEvent *ev) {
Window *w;
if((w = findwin(ev->window)))
event_handle(w, destroy, ev);
}