[PATCH xlsclients] Use XCB_ATOM_* atom names rather than deprecated atom names
Jon TURNEY
jon.turney at dronecode.org.uk
Mon Mar 7 05:54:53 PST 2011
Use XCB_ATOM_* atom names rather than deprecated atom names
Those deprecated atom names were removed from xcb/util in commit
2f0334b3eb49fa3a0d6daf6b9dde10e480a5c59f
Found by tinderbox, see:
http://tinderbox.freedesktop.org/builds/2011-03-06-0008/logs/xlsclients/#build
http://tinderbox.freedesktop.org/builds/2011-03-07-0001/logs/xlsclients/#build
Signed-off-by: Jon TURNEY <jon.turney at dronecode.org.uk>
---
xlsclients.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/xlsclients.c b/xlsclients.c
index 3a34865..15d3f1a 100644
--- a/xlsclients.c
+++ b/xlsclients.c
@@ -539,21 +539,21 @@ print_client_properties(xcb_connection_t *dpy, xcb_window_t w, int verbose, int
* get the WM_CLIENT_MACHINE and WM_COMMAND list of strings
*/
cs->client_machine = xcb_get_property(dpy, 0, w,
- WM_CLIENT_MACHINE, XCB_GET_PROPERTY_TYPE_ANY,
+ XCB_ATOM_WM_CLIENT_MACHINE, XCB_GET_PROPERTY_TYPE_ANY,
0, 1000000L);
cs->command = xcb_get_property(dpy, 0, w,
- WM_COMMAND, XCB_GET_PROPERTY_TYPE_ANY,
+ XCB_ATOM_WM_COMMAND, XCB_GET_PROPERTY_TYPE_ANY,
0, 1000000L);
if (verbose) {
cs->name = xcb_get_property(dpy, 0, w,
- WM_NAME, XCB_GET_PROPERTY_TYPE_ANY,
+ XCB_ATOM_WM_NAME, XCB_GET_PROPERTY_TYPE_ANY,
0, 1000000L);
cs->icon_name = xcb_get_property(dpy, 0, w,
- WM_ICON_NAME, XCB_GET_PROPERTY_TYPE_ANY,
+ XCB_ATOM_WM_ICON_NAME, XCB_GET_PROPERTY_TYPE_ANY,
0, 1000000L);
cs->wm_class = xcb_get_property(dpy, 0, w,
- WM_CLASS, STRING,
+ XCB_ATOM_WM_CLASS, XCB_ATOM_STRING,
0, 1000000L);
}
@@ -569,7 +569,7 @@ print_text_field(xcb_connection_t *dpy, char *s, xcb_get_property_reply_t *tp)
}
if (s) printf ("%s", s);
- if (tp->type == STRING && tp->format == 8) {
+ if (tp->type == XCB_ATOM_STRING && tp->format == 8) {
printf ("%.*s", (int)tp->value_len, (char *)xcb_get_property_value(tp));
} else {
unknown (dpy, tp->type, tp->format);
--
1.7.4
More information about the xorg-devel
mailing list