diff options
| author | Joel Bodenmann <joel@unormal.org> | 2014-11-12 08:50:05 +0100 |
|---|---|---|
| committer | Joel Bodenmann <joel@unormal.org> | 2014-11-12 08:50:05 +0100 |
| commit | d3a0606c65535be34cb38e6cfb3ba8d92657ad82 (patch) | |
| tree | 0baf7c7a132138efc5a5a223f986795521108187 /demos/modules/gwin/checkbox | |
| parent | f793194e43b130ae9e5133ac7d03bd819ce77e91 (diff) | |
| parent | 04334f284c8c4236e2a07b6611ddb790ee05db72 (diff) | |
| download | uGFX-d3a0606c65535be34cb38e6cfb3ba8d92657ad82.tar.gz uGFX-d3a0606c65535be34cb38e6cfb3ba8d92657ad82.tar.bz2 uGFX-d3a0606c65535be34cb38e6cfb3ba8d92657ad82.zip | |
Merge branch 'newmouse'
Diffstat (limited to 'demos/modules/gwin/checkbox')
| -rw-r--r-- | demos/modules/gwin/checkbox/main.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/demos/modules/gwin/checkbox/main.c b/demos/modules/gwin/checkbox/main.c index 28122bee..22963e40 100644 --- a/demos/modules/gwin/checkbox/main.c +++ b/demos/modules/gwin/checkbox/main.c @@ -39,14 +39,14 @@ static void createWidgets(void) { gwinWidgetClearInit(&wi); wi.g.show = TRUE; - // Apply the checkbox parameters + // Apply the checkbox parameters wi.g.width = 100; // includes text wi.g.height = 20; wi.g.y = 10; wi.g.x = 10; wi.text = "Checkbox"; - // Create the actual checkbox + // Create the actual checkbox ghCheckbox1 = gwinCheckboxCreate(0, &wi); } @@ -61,9 +61,6 @@ int main(void) { gwinSetDefaultStyle(&WhiteWidgetStyle, FALSE); gdispClear(White); - // Attach the mouse input - gwinAttachMouse(0); - // create the widget createWidgets(); |
