{
if(!sel)
return;
- if(sel->proto & WM_PROTOCOL_DELWIN)
+ if(sel->proto & PROTODELWIN)
sendevent(sel->win, wmatom[WMProtocols], wmatom[WMDelete]);
else
XKillClient(dpy, sel->win);
/* mask shorthands, used in event.c and client.c */
#define BUTTONMASK (ButtonPressMask | ButtonReleaseMask)
#define MOUSEMASK (BUTTONMASK | PointerMotionMask)
-#define WM_PROTOCOL_DELWIN 1
+#define PROTODELWIN 1
typedef union Arg Arg;
typedef struct Client Client;
}
for(i = 0; i < res; i++) {
if(protocols[i] == wmatom[WMDelete])
- protos |= WM_PROTOCOL_DELWIN;
+ protos |= PROTODELWIN;
}
free((char *) protocols);
return protos;