remove wmatom

This commit is contained in:
Julien Danjou 2007-09-10 16:48:00 +02:00
parent 56b92a20b4
commit a6a91757c1
3 changed files with 2 additions and 4 deletions

View File

@ -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;

View File

@ -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 */

View File

@ -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