7 Feb
2023
7 Feb
'23
10:38 a.m.
Rémi Bernon (@rbernon) commented about dlls/windows.ui/uisettings.c:
- FIXME( "iface %p, type %d, color %p stub!\n", iface, type, value ); - return E_NOTIMPL; + DWORD theme; + + TRACE( "iface %p, type %d, value %p.\n", iface, type, value ); + + switch (type) + { + case UIColorType_Foreground: + case UIColorType_Background: + theme = get_app_theme(); + break; + default: + FIXME( "type %d not implemented.\n", type ); + return E_NOTIMPL; + }
switch (type)
{
case UIColorType_Foreground:
case UIColorType_Background:
theme = get_app_theme();
break;
default:
FIXME( "type %d not implemented.\n", type );
return E_NOTIMPL;
}
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/2103#note_23239