diff options
author | okan | 2014-08-20 15:15:29 +0000 |
---|---|---|
committer | okan | 2014-08-20 15:15:29 +0000 |
commit | baef75bfc55b19ae2f4f1a5f09c82d35539d5637 (patch) | |
tree | 1781b9efc7f70975adf5efab5cc71169288c2032 /xutil.c | |
parent | 081e6ab493c1cb965f3f03d6b55f2a24117e9290 (diff) | |
download | cwm-baef75bfc55b19ae2f4f1a5f09c82d35539d5637.tar.gz |
Purely mechanical; unify 'num', 'no' and 'shortcut'.
Diffstat (limited to 'xutil.c')
-rw-r--r-- | xutil.c | 6 |
1 files changed, 3 insertions, 3 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: xutil.c,v 1.85 2014/02/27 00:52:57 okan Exp $ + * $OpenBSD: xutil.c,v 1.86 2014/08/20 15:15:29 okan Exp $ */ #include <sys/param.h> @@ -291,10 +291,10 @@ xu_ewmh_net_desktop_names(struct screen_ctx *sc, char *data, int n) void xu_ewmh_net_wm_desktop(struct client_ctx *cc) { - long no = cc->group->shortcut; + long num = cc->group->num; XChangeProperty(X_Dpy, cc->win, ewmh[_NET_WM_DESKTOP], - XA_CARDINAL, 32, PropModeReplace, (unsigned char *)&no, 1); + XA_CARDINAL, 32, PropModeReplace, (unsigned char *)&num, 1); } Atom * |