diff options
author | Simon Ser <contact@emersion.fr> | 2020-03-06 12:37:43 +0100 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-03-06 21:34:44 +0100 |
commit | 4bb391c896738c369b0b375b9845460747848053 (patch) | |
tree | 48b98d1963dbeb202335099a2218bd5b646a171c /include/xwayland | |
parent | 175af4f74fc6c0896067b18483073638e8b3f674 (diff) |
xwayland: remove underscore prefix from atom names
Previously, some atoms had a leading underscore, others didn't. Be more
consistent and never use a leading underscore (symbols with a leading
underscore followed by an upper-case letter are reserved).
Diffstat (limited to 'include/xwayland')
-rw-r--r-- | include/xwayland/xwm.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/include/xwayland/xwm.h b/include/xwayland/xwm.h index 9f46d433..351fce44 100644 --- a/include/xwayland/xwm.h +++ b/include/xwayland/xwm.h @@ -37,14 +37,14 @@ enum atom_name { NET_WM_WINDOW_TYPE, WM_TAKE_FOCUS, WINDOW, - _NET_ACTIVE_WINDOW, - _NET_WM_MOVERESIZE, - _NET_SUPPORTING_WM_CHECK, - _NET_WM_STATE_MODAL, - _NET_WM_STATE_FULLSCREEN, - _NET_WM_STATE_MAXIMIZED_VERT, - _NET_WM_STATE_MAXIMIZED_HORZ, - _NET_WM_PING, + NET_ACTIVE_WINDOW, + NET_WM_MOVERESIZE, + NET_SUPPORTING_WM_CHECK, + NET_WM_STATE_MODAL, + NET_WM_STATE_FULLSCREEN, + NET_WM_STATE_MAXIMIZED_VERT, + NET_WM_STATE_MAXIMIZED_HORZ, + NET_WM_PING, WM_STATE, CLIPBOARD, PRIMARY, @@ -79,7 +79,7 @@ enum atom_name { DND_ACTION_COPY, DND_ACTION_ASK, DND_ACTION_PRIVATE, - _NET_CLIENT_LIST, + NET_CLIENT_LIST, ATOM_LAST // keep last }; |