diff options
author | okan | 2014-08-18 13:57:57 +0000 |
---|---|---|
committer | okan | 2014-08-18 13:57:57 +0000 |
commit | 3fdfda76527cf75885aabd06006fce424b696245 (patch) | |
tree | edda8e074e40d3a35223a3ad5d115b0e8bd54635 /calmwm.h | |
parent | 8fcbf7b8c5ca91ed2e01de4f3bc0b73dedb8d209 (diff) | |
download | cwm-3fdfda76527cf75885aabd06006fce424b696245.tar.gz |
Get rid of nhidden in group_ctx; it actually never reported correctly
since nhidden wasn't incremented nor decremeted in all the right places,
thus confusing matters. We don't need to carry a count around, so just
use a local variable in the one place we need one to supply
XRestackWindows().
Diffstat (limited to '')
-rw-r--r-- | calmwm.h | 3 |
1 files changed, 1 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. * - * $OpenBSD: calmwm.h,v 1.259 2014/02/08 02:49:30 okan Exp $ + * $OpenBSD: calmwm.h,v 1.260 2014/08/18 13:57:57 okan Exp $ */ #ifndef _CALMWM_H_ @@ -205,7 +205,6 @@ struct group_ctx { struct client_ctx_q clients; int shortcut; int hidden; - int nhidden; int highstack; }; TAILQ_HEAD(group_ctx_q, group_ctx); |