From 28ffff801bb0137ec3fe4093afc4fb29784b17ec Mon Sep 17 00:00:00 2001 From: "Anselm R. Garbe" Date: Wed, 7 Feb 2007 12:37:06 +0100 Subject: replaced getproto with a saner function, now old-school artifacts of WM times in the early 90s completely disappeared, no punned pointer warning anymore ;) --- main.c | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'main.c') diff --git a/main.c b/main.c index 97fdbaf..da95d95 100644 --- a/main.c +++ b/main.c @@ -172,24 +172,6 @@ xerrorstart(Display *dsply, XErrorEvent *ee) { /* extern */ -int -getproto(Window w) { - int i, format, protos, status; - unsigned long extra, res; - Atom *protocols, real; - - protos = 0; - status = XGetWindowProperty(dpy, w, wmatom[WMProtocols], 0L, 20L, False, - XA_ATOM, &real, &format, &res, &extra, (unsigned char **)&protocols); - if(status != Success || protocols == 0) - return protos; - for(i = 0; i < res; i++) - if(protocols[i] == wmatom[WMDelete]) - protos |= PROTODELWIN; - free(protocols); - return protos; -} - void sendevent(Window w, Atom a, long value) { XEvent e; -- cgit v1.2.3-54-g00ecf