From 0587e351692741cb4c68e161a345def2e2dcea5c Mon Sep 17 00:00:00 2001 From: inmarket Date: Tue, 15 Jul 2014 16:38:13 +1000 Subject: Add widget tag support (and fix a couple of doxygen problems) --- src/gwin/checkbox.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/gwin/checkbox.c') diff --git a/src/gwin/checkbox.c b/src/gwin/checkbox.c index f162d8fc..7914ee82 100644 --- a/src/gwin/checkbox.c +++ b/src/gwin/checkbox.c @@ -33,6 +33,9 @@ static void SendCheckboxEvent(GWidgetObject *gw) { pce->type = GEVENT_GWIN_CHECKBOX; pce->checkbox = &gw->g; pce->isChecked = (gw->g.flags & GCHECKBOX_FLG_CHECKED) ? TRUE : FALSE; + #if GWIN_WIDGET_TAGS + pce->tag = gw->tag; + #endif geventSendEvent(psl); } -- cgit v1.2.3