http://bugs.winehq.org/show_bug.cgi?id=6078
xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|wine-misc |wine-shell32
------- Additional Comments From xerox_xerox2000@yahoo.co.uk 2006-01-12 06:58 ------- That second bug i mentioned in the comment above is a bug in shell32. The following hack makes icq's login window come up fine, and it's usable (as i don't have account i couldn't test further). So for now there are two bugs in urlmon and shell32.
Hack: diff --git a/dlls/shell32/shell32_main.c b/dlls/shell32/shell32_main.c index 0c0c3b8..45c0ac7 100644 --- a/dlls/shell32/shell32_main.c +++ b/dlls/shell32/shell32_main.c @@ -865,7 +865,7 @@ UINT WINAPI SHAppBarMessage(DWORD msg, P return TRUE; case ABM_NEW: /* cbSize, hWnd, and uCallbackMessage are used. All other ignored */ - SetWindowPos(data->hWnd,HWND_TOP,0,0,0,0,SWP_SHOWWINDOW|SWP_NOMOVE|SWP_NOSIZE); + //SetWindowPos(data->hWnd,HWND_TOP,0,0,0,0,SWP_SHOWWINDOW|SWP_NOMOVE|SWP_NOSIZE); return TRUE; case ABM_QUERYPOS: GetWindowRect(data->hWnd, &(data->rc));