| commit | 8595ffadd99d5d4571ea6c2c735fa082ed21b8bc | [log] [tgz] |
|---|---|---|
| author | Jeff Zaroyko <jeffz@jeffz.name> | Thu Oct 02 15:10:27 2008 +1000 |
| committer | Alexandre Julliard <julliard@winehq.org> | Thu Oct 02 10:28:53 2008 -0500 |
| tree | 0e129f08f18e76690b1befee7ae01866b581971d | |
| parent | 0f43beaa7bd94c4a16092a13e1140e18bb8f21d5 [diff] [blame] |
hhctrl.ocx: Always set WS_OVERLAPPEDWINDOW.
diff --git a/dlls/hhctrl.ocx/help.c b/dlls/hhctrl.ocx/help.c index 6a694a9..ff70338 100644 --- a/dlls/hhctrl.ocx/help.c +++ b/dlls/hhctrl.ocx/help.c
@@ -825,7 +825,7 @@ /* Read in window parameters if available */ if (info->WinType.fsValidMembers & HHWIN_PARAM_STYLES) - dwStyles = info->WinType.dwStyles; + dwStyles = info->WinType.dwStyles | WS_OVERLAPPEDWINDOW; else dwStyles = WS_OVERLAPPEDWINDOW | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CLIPCHILDREN;