From de5a9837773ebeadaae90b3bdf32df190f4192d8 Mon Sep 17 00:00:00 2001 From: inmarket Date: Fri, 9 May 2014 21:34:12 +1000 Subject: [PATCH] GWIN window manager comment updates --- src/gwin/gwm.c | 8 ++++---- 1 file 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); }