Module: wine Branch: master Commit: 913fb67a5b2a9c2138c6202976ae548650fb4d6e URL: http://source.winehq.org/git/wine.git/?a=commit;h=913fb67a5b2a9c2138c6202976...
Author: Austin English austinenglish@gmail.com Date: Wed Jan 11 11:44:11 2012 -0800
comctl32: Fix a grammar error in comment.
---
dlls/comctl32/imagelist.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/comctl32/imagelist.c b/dlls/comctl32/imagelist.c index 41c1017..ccc594f 100644 --- a/dlls/comctl32/imagelist.c +++ b/dlls/comctl32/imagelist.c @@ -775,7 +775,7 @@ ImageList_Create (INT cx, INT cy, UINT flags,
if (cGrow > 256) { - /* Windows doesn't limit the size here, but X11 doesn't let use allocate such huge bitmaps */ + /* Windows doesn't limit the size here, but X11 doesn't let us allocate such huge bitmaps */ WARN( "grow %d too large, limiting to 256\n", cGrow ); cGrow = 256; }