Zhiyi Zhang (@zhiyi) commented about dlls/comctl32/tests/combo.c:
- wc.style = CS_HREDRAW | CS_VREDRAW;
- wc.cbClsExtra = 0;
- wc.cbWndExtra = 0;
- wc.hInstance = GetModuleHandleA(NULL);
- wc.hIcon = NULL;
- wc.hCursor = LoadCursorA(NULL, (LPCSTR)IDC_ARROW);
- wc.hbrBackground = GetSysColorBrush(COLOR_WINDOW);
- wc.lpszMenuName = NULL;
- wc.lpszClassName = L"test_measure_item";
- wc.lpfnWndProc = test_measure_item_wnd_proc;
- RegisterClassW(&wc);
- winetest_push_context("style %#lx", style);
- parent = CreateWindowA("test_measure_item", "Test measure", WS_OVERLAPPEDWINDOW | WS_VISIBLE, 10, 10, 300, 300, NULL, NULL, NULL, 0);
- test_wm_measureitem_count = 0;
- combo = CreateWindowA(WC_COMBOBOXA, "Combo", WS_VISIBLE|WS_CHILD|style, 5, 5, 100, 100, parent, (HMENU)COMBO_ID, NULL, 0);
Please add spaces between |.