aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Hannam <Andrew Hannam>2016-07-28 16:34:34 +1000
committerAndrew Hannam <Andrew Hannam>2016-07-28 16:34:34 +1000
commit868a272d6e44c267d84420932247b942c07d5713 (patch)
tree540669b19239b6cccb75754bc93a3db40378ff67 /src
parent7e15f0840e9bf4536c147242eb7cdf83e18288b8 (diff)
downloaduGFX-868a272d6e44c267d84420932247b942c07d5713.tar.gz
uGFX-868a272d6e44c267d84420932247b942c07d5713.tar.bz2
uGFX-868a272d6e44c267d84420932247b942c07d5713.zip
Minor WM_Raise tidy up
Diffstat (limited to 'src')
-rw-r--r--src/gwin/gwin_wm.c2
1 files changed, 1 insertions, 1 deletions
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;