diff options
author | Joel Bodenmann <joel@seriouslyembedded.com> | 2015-11-15 12:23:52 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@seriouslyembedded.com> | 2015-11-15 12:23:52 +0100 |
commit | 511bdd73492a4623a43e10c5cd6b24d3690f2886 (patch) | |
tree | 935cbf40b05c8f373d95a9a52c6d09db54268345 /src | |
parent | 697211a85be7470097459146d06402cfe301db50 (diff) | |
download | uGFX-511bdd73492a4623a43e10c5cd6b24d3690f2886.tar.gz uGFX-511bdd73492a4623a43e10c5cd6b24d3690f2886.tar.bz2 uGFX-511bdd73492a4623a43e10c5cd6b24d3690f2886.zip |
Removing superfluous paranthesis
Diffstat (limited to 'src')
-rw-r--r-- | src/gwin/gwin_class.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gwin/gwin_class.h b/src/gwin/gwin_class.h index c5c83bb0..041c9152 100644 --- a/src/gwin/gwin_class.h +++ b/src/gwin/gwin_class.h @@ -321,7 +321,7 @@ bool_t _gwinWMAdd(GHandle gh, const GWindowInit *pInit); */ void _gwinSendEvent(GHandle gh, GEventType type); - #if ((GFX_USE_GINPUT && GINPUT_NEED_KEYBOARD) || GWIN_NEED_KEYBOARD) || defined(__DOXYGEN__) + #if (GFX_USE_GINPUT && GINPUT_NEED_KEYBOARD) || GWIN_NEED_KEYBOARD || defined(__DOXYGEN__) /** * @brief Move the focus off the current focus window. * |