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;
- }
```suggestion:-9+0 switch (type) { case UIColorType_Foreground: case UIColorType_Background: theme = get_app_theme(); break; default: FIXME( "type %d not implemented.\n", type ); return E_NOTIMPL; } ```