diff options
author | oga | 2009-12-07 22:46:15 +0000 |
---|---|---|
committer | oga | 2009-12-07 22:46:15 +0000 |
commit | ff7157bb69ba801513b0ee6af1db2cde51ac62aa (patch) | |
tree | daccfa006fd38fcac565a0b4bebc89fffe828c71 /calmwm.h | |
parent | ad1677271ac08bca24c9d41bcbe555353687eb58 (diff) | |
download | cwm-ff7157bb69ba801513b0ee6af1db2cde51ac62aa.tar.gz |
support _NET_CLIENT_LIST.
the x property api doesn't let you remove one entry from an X property
array, so client_remove is kinda expensive, but there's no real way
around that..
ok okan@
Diffstat (limited to 'calmwm.h')
-rw-r--r-- | calmwm.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: calmwm.h,v 1.100 2009/12/07 22:21:59 oga Exp $ + * $Id: calmwm.h,v 1.101 2009/12/07 22:46:15 oga Exp $ */ #ifndef _CALMWM_H_ @@ -527,7 +527,8 @@ extern struct conf Conf; #define _NET_SUPPORTING_WM_CHECK cwm_atoms[8] #define _NET_WM_NAME cwm_atoms[9] #define _NET_ACTIVE_WINDOW cwm_atoms[10] -#define CWM_NO_ATOMS 11 +#define _NET_CLIENT_LIST cwm_atoms[11] +#define CWM_NO_ATOMS 12 #define CWM_NETWM_START 7 extern Atom cwm_atoms[CWM_NO_ATOMS]; |