removed sendevent

This commit is contained in:
Anselm R. Garbe
2007-02-26 16:24:51 +01:00
parent ee8fb0c6e4
commit bab5b1178d
3 changed files with 11 additions and 17 deletions

14
main.c
View File

@ -221,20 +221,6 @@ xerrorstart(Display *dsply, XErrorEvent *ee) {
/* 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;