diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2013-12-11 15:46:48 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2013-12-11 15:46:48 +0000 |
commit | 59cf556414927b268d6cbc8c9eb51ecbdec5a95a (patch) | |
tree | 36d71afea20cce90444c30d84d6953f249720b0b /app/cwm | |
parent | 4e4083c78838b391ec765b81c02466a3422f994c (diff) |
apply mwm hints later
Diffstat (limited to 'app/cwm')
-rw-r--r-- | app/cwm/client.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/cwm/client.c b/app/cwm/client.c index 2dbb673e9..7afcbd2b3 100644 --- a/app/cwm/client.c +++ b/app/cwm/client.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: client.c,v 1.156 2013/12/11 15:41:11 okan Exp $ + * $OpenBSD: client.c,v 1.157 2013/12/11 15:46:47 okan Exp $ */ #include <sys/param.h> @@ -37,7 +37,7 @@ static void client_mtf(struct client_ctx *); static void client_none(struct screen_ctx *); static void client_placecalc(struct client_ctx *); static void client_wm_protocols(struct client_ctx *); -static void client_getmwmhints(struct client_ctx *); +static void client_mwm_hints(struct client_ctx *); static int client_inbound(struct client_ctx *, int, int); struct client_ctx *_curcc = NULL; @@ -78,9 +78,9 @@ client_init(Window win, struct screen_ctx *sc, int mapped) XGetClassHint(X_Dpy, cc->win, &cc->ch); client_wm_hints(cc); - client_getmwmhints(cc); client_wm_protocols(cc); client_getsizehints(cc); + client_mwm_hints(cc); /* Saved pointer position */ cc->ptr.x = -1; @@ -806,7 +806,7 @@ client_applysizehints(struct client_ctx *cc) } static void -client_getmwmhints(struct client_ctx *cc) +client_mwm_hints(struct client_ctx *cc) { struct mwm_hints *mwmh; |