20 Oct
2025
20 Oct
'25
2:29 p.m.
Nikolay Sivov (@nsivov) commented about dlls/comctl32/datetime.c:
return 0; }
+#if __WINE_COMCTL32_VERSION == 6 static LRESULT DATETIME_ThemeChanged (DATETIME_INFO *infoPtr) { HTHEME theme;
theme = GetWindowTheme(infoPtr->hwndSelf); CloseThemeData(theme); - OpenThemeData(infoPtr->hwndSelf, themeClass); + OpenThemeData(infoPtr->hwndSelf, WC_SCROLLBARW); InvalidateRect(infoPtr->hwndSelf, NULL, TRUE); return 0; } +#endif
As I mentioned before, this should move to a shared helper, which we could them compile out entirely. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9221#note_119055