Make pattern brush data const.

This commit is contained in:
Jon Griffiths 2004-08-13 19:44:49 +00:00 committed by Alexandre Julliard
parent 9d5b0873a0
commit fb50426533
1 changed files with 2 additions and 2 deletions

View File

@ -554,10 +554,10 @@ ImageList_Create (INT cx, INT cy, UINT flags,
INT nCount;
HBITMAP hbmTemp;
UINT ilc = (flags & 0xFE);
static WORD aBitBlend25[] =
static const WORD aBitBlend25[] =
{0xAA, 0x00, 0x55, 0x00, 0xAA, 0x00, 0x55, 0x00};
static WORD aBitBlend50[] =
static const WORD aBitBlend50[] =
{0x55, 0xAA, 0x55, 0xAA, 0x55, 0xAA, 0x55, 0xAA};
TRACE("(%d %d 0x%x %d %d)\n", cx, cy, flags, cInitial, cGrow);