Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0a4b4b32
Commit
0a4b4b32
authored
Mar 08, 2001
by
Gerard Patel
Committed by
Alexandre Julliard
Mar 08, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LPARAM in find dialog wm_initdialog is the find/replace structure, not
custdata.
parent
1c8d0c7f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
finddlg32.c
dlls/commdlg/finddlg32.c
+1
-1
No files found.
dlls/commdlg/finddlg32.c
View file @
0a4b4b32
...
...
@@ -219,7 +219,7 @@ static BOOL CALLBACK COMDLG32_FindReplaceDlgProc(HWND hDlgWnd, UINT iMsg, WPARAM
/* We do not do ShowWindow if hook exists and is FALSE */
/* per MSDN Article Q96135 */
if
((
pdata
->
fr
.
Flags
&
FR_ENABLEHOOK
)
&&
!
pdata
->
fr
.
lpfnHook
(
hDlgWnd
,
iMsg
,
wParam
,
pdata
->
fr
.
lCustData
))
&&
!
pdata
->
fr
.
lpfnHook
(
hDlgWnd
,
iMsg
,
wParam
,
(
LPARAM
)
&
pdata
->
fr
))
return
TRUE
;
ShowWindow
(
hDlgWnd
,
SW_SHOWNORMAL
);
UpdateWindow
(
hDlgWnd
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment