remove wmatom
This commit is contained in:
parent
56b92a20b4
commit
a6a91757c1
|
@ -19,7 +19,7 @@
|
||||||
#include "tag.h"
|
#include "tag.h"
|
||||||
|
|
||||||
int wax, way, waw, wah;
|
int wax, way, waw, wah;
|
||||||
Atom wmatom[WMLast], netatom[NetLast];
|
Atom netatom[NetLast];
|
||||||
Client *clients = NULL;
|
Client *clients = NULL;
|
||||||
Client *sel = NULL;
|
Client *sel = NULL;
|
||||||
Client *stack = NULL;
|
Client *stack = NULL;
|
||||||
|
|
|
@ -38,8 +38,6 @@ enum
|
||||||
{ CurNormal, CurResize, CurMove, CurLast }; /* cursor */
|
{ CurNormal, CurResize, CurMove, CurLast }; /* cursor */
|
||||||
enum
|
enum
|
||||||
{ NetSupported, NetWMName, NetLast }; /* EWMH atoms */
|
{ NetSupported, NetWMName, NetLast }; /* EWMH atoms */
|
||||||
enum
|
|
||||||
{ WMLast }; /* default atoms */
|
|
||||||
|
|
||||||
Bool gettextprop(Display *, Window, Atom, char *, unsigned int); /* return text property, UTF-8 compliant */
|
Bool gettextprop(Display *, Window, Atom, char *, unsigned int); /* return text property, UTF-8 compliant */
|
||||||
void updatebarpos(Display *, Statusbar); /* updates the bar position */
|
void updatebarpos(Display *, Statusbar); /* updates the bar position */
|
||||||
|
|
2
client.c
2
client.c
|
@ -15,7 +15,7 @@
|
||||||
/* extern */
|
/* extern */
|
||||||
extern int wax, way, wah, waw; /* windowarea geometry */
|
extern int wax, way, wah, waw; /* windowarea geometry */
|
||||||
extern Client *clients, *sel, *stack; /* global client list and stack */
|
extern Client *clients, *sel, *stack; /* global client list and stack */
|
||||||
extern Atom wmatom[WMLast], netatom[NetLast];
|
extern Atom netatom[NetLast];
|
||||||
|
|
||||||
/** Attach client stack to clients stacks
|
/** Attach client stack to clients stacks
|
||||||
* \param c the client
|
* \param c the client
|
||||||
|
|
Loading…
Reference in New Issue