diff options
author | inmarket <andrewh@inmarket.com.au> | 2014-05-09 21:46:32 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2014-05-09 21:46:32 +1000 |
commit | 21aac3d8532c9aa1decab30c00d9f5a37067aa13 (patch) | |
tree | c874ac8494028f09461e4329f0bcfae8c0e5adb8 /src/gwin/gwm.c | |
parent | f7fa0dd78f3b807578d99cc0eefe40996b1f9037 (diff) | |
parent | 1478fdf41e3731cafacd22ff6f530fb724c02df3 (diff) | |
download | uGFX-21aac3d8532c9aa1decab30c00d9f5a37067aa13.tar.gz uGFX-21aac3d8532c9aa1decab30c00d9f5a37067aa13.tar.bz2 uGFX-21aac3d8532c9aa1decab30c00d9f5a37067aa13.zip |
Merge branch 'master' into gwin
Diffstat (limited to 'src/gwin/gwm.c')
-rw-r--r-- | src/gwin/gwm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gwin/gwm.c b/src/gwin/gwm.c index 9c158f68..3140b03f 100644 --- a/src/gwin/gwm.c +++ b/src/gwin/gwm.c @@ -127,7 +127,7 @@ void gwinRedrawDisplay(GDisplay *g, bool_t preserve) { } /*----------------------------------------------- - * Window Manager Routines + * "Null" Window Manager Routines *-----------------------------------------------*/ static void WM_Init(void) { @@ -145,9 +145,9 @@ static void WM_DeInit(void) { } static bool_t WM_Add(GHandle gh, const GWindowInit *pInit) { - // Note the window will not be marked as visible yet + // Note the window will not currently be marked as visible - // Put it on the queue + // Put it on the end of the queue gfxQueueASyncPut(&_GWINList, &gh->wmq); // Make sure the size is valid @@ -156,7 +156,7 @@ static bool_t WM_Add(GHandle gh, const GWindowInit *pInit) { } static void WM_Delete(GHandle gh) { - // Remove it from the queue + // Remove it from the window list gfxQueueASyncRemove(&_GWINList, &gh->wmq); } |