diff options
author | inmarket <andrewh@inmarket.com.au> | 2013-07-01 17:47:35 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2013-07-01 17:47:35 +1000 |
commit | 4afd5ec74429232e4db96001ed89757b0ba55ee7 (patch) | |
tree | 5889174cdcadbf39655a178509073952f68462d8 /src/gwin/gwidget.c | |
parent | de27a6c2db6f5fb97b3a5d07395a629c879abfbc (diff) | |
parent | df5f701a11ea5603f1f0b44f0e6bd96084b6d09d (diff) | |
download | uGFX-4afd5ec74429232e4db96001ed89757b0ba55ee7.tar.gz uGFX-4afd5ec74429232e4db96001ed89757b0ba55ee7.tar.bz2 uGFX-4afd5ec74429232e4db96001ed89757b0ba55ee7.zip |
Merge branch 'GWIN' into image
Diffstat (limited to 'src/gwin/gwidget.c')
-rw-r--r-- | src/gwin/gwidget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gwin/gwidget.c b/src/gwin/gwidget.c index 2825bf4c..a2b82f1d 100644 --- a/src/gwin/gwidget.c +++ b/src/gwin/gwidget.c @@ -165,7 +165,7 @@ void _gwidgetInit(void) { geventRegisterCallback(&gl, gwidgetEvent, 0); } -GHandle _gwidgetCreate(GWidgetObject *pgw, GWidgetInit *pInit, const gwidgetVMT *vmt) { +GHandle _gwidgetCreate(GWidgetObject *pgw, const GWidgetInit *pInit, const gwidgetVMT *vmt) { if (!(pgw = (GWidgetObject *)_gwindowCreate(&pgw->g, &pInit->g, &vmt->g, GWIN_FLG_WIDGET|GWIN_FLG_ENABLED))) return 0; |