cosmetic and documente Bool-s attribute in Client

This commit is contained in:
Julien Danjou 2007-10-22 11:21:27 +02:00
parent b1dcf6c71b
commit 71b7860ba3
2 changed files with 9 additions and 2 deletions

View File

@ -606,7 +606,7 @@ unmanage(Client *c, long state, awesome_config *awesomeconf)
} }
void void
updatesizehints(Client * c) updatesizehints(Client *c)
{ {
long msize; long msize;
XSizeHints size; XSizeHints size;

View File

@ -108,7 +108,14 @@ struct Client
Bool unmapped; Bool unmapped;
long flags; long flags;
int border, oldborder; int border, oldborder;
Bool isfixed, ismax, isfloating, wasfloating; /** Store previous floating state before maximizing */
Bool wasfloating;
/** True if the window is floating */
Bool isfloating;
/** True if the window is fixed */
Bool isfixed;
/** True if the window is maximized */
Bool ismax;
/** Tags for the client */ /** Tags for the client */
Bool *tags; Bool *tags;
/** Next client */ /** Next client */