diff options
author | Andrew Hannam <Andrew Hannam> | 2016-07-28 16:34:34 +1000 |
---|---|---|
committer | Andrew Hannam <Andrew Hannam> | 2016-07-28 16:34:34 +1000 |
commit | 868a272d6e44c267d84420932247b942c07d5713 (patch) | |
tree | 540669b19239b6cccb75754bc93a3db40378ff67 /src | |
parent | 7e15f0840e9bf4536c147242eb7cdf83e18288b8 (diff) | |
download | uGFX-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.c | 2 |
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; |