diff options
author | inmarket <andrewh@inmarket.com.au> | 2014-07-15 16:38:13 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2014-07-15 16:38:13 +1000 |
commit | 0587e351692741cb4c68e161a345def2e2dcea5c (patch) | |
tree | 035893fbeca286a356b4f8380f194bbdcc72a85f /src/gwin/button.c | |
parent | 679961a25ebfe5f6f858811c9a27dd3ddc3fb9aa (diff) | |
download | uGFX-0587e351692741cb4c68e161a345def2e2dcea5c.tar.gz uGFX-0587e351692741cb4c68e161a345def2e2dcea5c.tar.bz2 uGFX-0587e351692741cb4c68e161a345def2e2dcea5c.zip |
Add widget tag support (and fix a couple of doxygen problems)
Diffstat (limited to 'src/gwin/button.c')
-rw-r--r-- | src/gwin/button.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gwin/button.c b/src/gwin/button.c index d489ecb0..fc1cb976 100644 --- a/src/gwin/button.c +++ b/src/gwin/button.c @@ -39,6 +39,9 @@ static void SendButtonEvent(GWidgetObject *gw) { continue; pbe->type = GEVENT_GWIN_BUTTON; pbe->button = (GHandle)gw; + #if GWIN_WIDGET_TAGS + pbe->tag = gw->tag; + #endif geventSendEvent(psl); } |