diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-09-15 17:32:58 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-09-15 17:32:58 +0000 |
commit | 34b8262885c1eaef51043b20b72bd3b0bc8e8dbc (patch) | |
tree | b4208036788e55e0ed61a5ceffeac9ab90ad693e /tools/aewm-drakx/client.c | |
parent | 969a0df111577727a32e7f59d3143267e31ae2cc (diff) | |
download | drakx-34b8262885c1eaef51043b20b72bd3b0bc8e8dbc.tar drakx-34b8262885c1eaef51043b20b72bd3b0bc8e8dbc.tar.gz drakx-34b8262885c1eaef51043b20b72bd3b0bc8e8dbc.tar.bz2 drakx-34b8262885c1eaef51043b20b72bd3b0bc8e8dbc.tar.xz drakx-34b8262885c1eaef51043b20b72bd3b0bc8e8dbc.zip |
set_focus on new map_request event (fix summary step)
Diffstat (limited to 'tools/aewm-drakx/client.c')
-rw-r--r-- | tools/aewm-drakx/client.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/aewm-drakx/client.c b/tools/aewm-drakx/client.c index 6f38f3150..8db6b2151 100644 --- a/tools/aewm-drakx/client.c +++ b/tools/aewm-drakx/client.c @@ -18,7 +18,6 @@ Client *find_client(Window w) return NULL; } - void set_focus_on(Window w) { char *name; @@ -26,7 +25,7 @@ void set_focus_on(Window w) if (name && strcmp(name, "skip")) { XSetInputFocus(dpy, w, RevertToPointerRoot, CurrentTime); #ifdef DEBUG - printf("aewm-drakx: adding %ld %s\n", w, name); + printf("aewm-drakx: adding %lx %s\n", w, name); #endif } } |