removed sendevent
authorAnselm R. Garbe <arg@suckless.org>
Mon, 26 Feb 2007 16:24:51 +0100
changeset 848 944739ec944a
parent 847 b386350fa4ec
child 849 4f1ff9e068d3
removed sendevent
client.c
dwm.h
main.c
--- a/client.c	Mon Feb 26 10:47:11 2007 +0100
+++ b/client.c	Mon Feb 26 16:24:51 2007 +0100
@@ -154,10 +154,19 @@
 
 void
 killclient(const char *arg) {
+	XEvent ev;
+
 	if(!sel)
 		return;
-	if(isprotodel(sel))
-		sendevent(sel->win, wmatom[WMProtocols], wmatom[WMDelete]);
+	if(isprotodel(sel)) {
+		ev.type = ClientMessage;
+		ev.xclient.window = sel->win;
+		ev.xclient.message_type = wmatom[WMProtocols];
+		ev.xclient.format = 32;
+		ev.xclient.data.l[0] = wmatom[WMDelete];
+		ev.xclient.data.l[1] = CurrentTime;
+		XSendEvent(dpy, sel->win, False, NoEventMask, &ev);
+	}
 	else
 		XKillClient(dpy, sel->win);
 }
--- a/dwm.h	Mon Feb 26 10:47:11 2007 +0100
+++ b/dwm.h	Mon Feb 26 16:24:51 2007 +0100
@@ -130,7 +130,6 @@
 
 /* main.c */
 void quit(const char *arg);		/* quit dwm nicely */
-void sendevent(Window w, Atom a, long value);	/* send synthetic event to w */
 int xerror(Display *dsply, XErrorEvent *ee);	/* dwm's X error handler */
 
 /* tag.c */
--- a/main.c	Mon Feb 26 10:47:11 2007 +0100
+++ b/main.c	Mon Feb 26 16:24:51 2007 +0100
@@ -222,20 +222,6 @@
 /* extern */
 
 void
-sendevent(Window w, Atom a, long value) {
-	XEvent e;
-
-	e.type = ClientMessage;
-	e.xclient.window = w;
-	e.xclient.message_type = a;
-	e.xclient.format = 32;
-	e.xclient.data.l[0] = value;
-	e.xclient.data.l[1] = CurrentTime;
-	XSendEvent(dpy, w, False, NoEventMask, &e);
-	XSync(dpy, False);
-}
-
-void
 quit(const char *arg) {
 	readin = running = False;
 }