Module: wine Branch: master Commit: 8595ffadd99d5d4571ea6c2c735fa082ed21b8bc URL: http://source.winehq.org/git/wine.git/?a=commit;h=8595ffadd99d5d4571ea6c2c73...
Author: Jeff Zaroyko jeffz@jeffz.name Date: Thu Oct 2 15:10:27 2008 +1000
hhctrl.ocx: Always set WS_OVERLAPPEDWINDOW.
---
dlls/hhctrl.ocx/help.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
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 @@ static BOOL HH_CreateHelpWindow(HHInfo *info)
/* 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;