diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2013-04-17 13:57:07 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2013-04-17 13:57:07 +0000 |
commit | b8bb34fcbff55d20b6ee7373685b86c7d5a8284d (patch) | |
tree | dc4f14cfef0ce0426227d15b6eb2f53e5d260780 /app/cwm/xutil.c | |
parent | 974feb6c52be144941bb9b8802ae8212f498d448 (diff) |
mechanical xu_{get,set}state -> xu_{get,set}_wm_state change
Diffstat (limited to 'app/cwm/xutil.c')
-rw-r--r-- | app/cwm/xutil.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/cwm/xutil.c b/app/cwm/xutil.c index 84b564ec9..49332c54f 100644 --- a/app/cwm/xutil.c +++ b/app/cwm/xutil.c @@ -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.55 2013/04/17 13:52:20 okan Exp $ + * $OpenBSD: xutil.c,v 1.56 2013/04/17 13:57:06 okan Exp $ */ #include <sys/param.h> @@ -203,7 +203,7 @@ xu_getstrprop(Window win, Atom atm, char **text) { } int -xu_getstate(Window win, int *state) +xu_get_wm_state(Window win, int *state) { long *p = NULL; @@ -218,7 +218,7 @@ xu_getstate(Window win, int *state) } void -xu_setstate(Window win, int state) +xu_set_wm_state(Window win, int state) { long dat[2]; |