From 868a272d6e44c267d84420932247b942c07d5713 Mon Sep 17 00:00:00 2001 From: Andrew Hannam Date: Thu, 28 Jul 2016 16:34:34 +1000 Subject: [PATCH] Minor WM_Raise tidy up --- src/gwin/gwin_wm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gwin/gwin_wm.c b/src/gwin/gwin_wm.c index 9f5010b2..3f50b4fc 100644 --- a/src/gwin/gwin_wm.c +++ b/src/gwin/gwin_wm.c @@ -991,7 +991,7 @@ static void WM_Raise(GHandle gh) { #if GWIN_NEED_CONTAINERS // Any children need to be raised too if ((gh->flags & GWIN_FLG_CONTAINER)) { - GHandle gx = gh; + GHandle gx; GHandle child; bool_t restart;