diff options
| author | inmarket <andrewh@inmarket.com.au> | 2013-06-10 17:18:01 +1000 | 
|---|---|---|
| committer | inmarket <andrewh@inmarket.com.au> | 2013-06-10 17:18:01 +1000 | 
| commit | 2cb35d6815a0a12035f4792c266b688c77085620 (patch) | |
| tree | 292ebc4760767d67b41f7f0e0022185afcf05067 /demos/modules/gadc | |
| parent | 777ec6af7c1b594f7b7a9cbaaf7ead90d8fb7e8f (diff) | |
| download | uGFX-2cb35d6815a0a12035f4792c266b688c77085620.tar.gz uGFX-2cb35d6815a0a12035f4792c266b688c77085620.tar.bz2 uGFX-2cb35d6815a0a12035f4792c266b688c77085620.zip  | |
Clean up GWIN Event assignment. Optimise event efficiency.
Diffstat (limited to 'demos/modules/gadc')
| -rw-r--r-- | demos/modules/gadc/gwinosc.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/modules/gadc/gwinosc.c b/demos/modules/gadc/gwinosc.c index 88e61334..60a08686 100644 --- a/demos/modules/gadc/gwinosc.c +++ b/demos/modules/gadc/gwinosc.c @@ -47,7 +47,7 @@  GHandle gwinCreateScope(GScopeObject *gs, coord_t x, coord_t y, coord_t cx, coord_t cy, uint32_t physdev, uint32_t frequency) {  	/* Initialise the base class GWIN */ -	if (!(gs = (GScopeObject *)_gwindowInit((GWindowObject *)gs, x, y, cx, cy, sizeof(GScopeObject)))) +	if (!(gs = (GScopeObject *)_gwindowCreate((GWindowObject *)gs, x, y, cx, cy, sizeof(GScopeObject))))  		return 0;  	/* Initialise the scope object members and allocate memory for buffers */  | 
