comctl32/tests: Use defined flags instead of magic numbers in v6 tests.

This commit is contained in:
Owen Rudge 2009-11-16 13:27:33 -06:00 committed by Alexandre Julliard
parent 9db87f13d3
commit 459361d4d6

View File

@ -1394,7 +1394,7 @@ static void DoTest1_v6(void)
int ret = 0;
/* create an imagelist to play with */
himl = ImageList_Create(84,84,0x10,0,3);
himl = ImageList_Create(84, 84, ILC_COLOR16, 0, 3);
ok(himl != 0,"failed to create imagelist\n");
imgl = (IImageList *) himl;
@ -1466,7 +1466,7 @@ static void DoTest3_v6(void)
ok(hdc!=NULL, "couldn't get DC\n");
/* create an imagelist to play with */
himl = ImageList_Create(48,48,0x10,0,3);
himl = ImageList_Create(48, 48, ILC_COLOR16, 0, 3);
ok(himl!=0,"failed to create imagelist\n");
imgl = (IImageList *) himl;