Some programs try to get the class name, so this needs to have correct casing.
Note: For some reason, you will need a proper clean to see the changes, just rebuilding is *not* enough.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45689 Signed-off-by: Fabian Maurer dark.shadow4@web.de --- dlls/comctl32/comctl32.manifest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/comctl32/comctl32.manifest b/dlls/comctl32/comctl32.manifest index 4c86137667..fa5df29634 100644 --- a/dlls/comctl32/comctl32.manifest +++ b/dlls/comctl32/comctl32.manifest @@ -6,7 +6,7 @@ <windowClass>ButtonListBox</windowClass> <windowClass>ComboBoxEx32</windowClass> <windowClass>ComboLBox</windowClass> - <windowClass>Combobox</windowClass> + <windowClass>ComboBox</windowClass> <windowClass>Edit</windowClass> <windowClass>Listbox</windowClass> <windowClass>NativeFontCtl</windowClass>
It's lowercase on Windows.
On Mittwoch, 22. August 2018 23:13:44 CEST Nikolay Sivov wrote:
It's lowercase on Windows.
You're right. Guess I'll have to keep looking then. Though I think I'm still on the right track.
Regards, Fabian