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
cae20edb
Commit
cae20edb
authored
Sep 26, 2022
by
Piotr Caban
Committed by
Alexandre Julliard
Oct 26, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Fix PROPSHEETPAGE[AW] structure content in messages and callbacks.
parent
eb5a4f21
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
propsheet.c
dlls/comctl32/propsheet.c
+0
-0
propsheet.c
dlls/comctl32/tests/propsheet.c
+2
-2
No files found.
dlls/comctl32/propsheet.c
View file @
cae20edb
This diff is collapsed.
Click to expand it.
dlls/comctl32/tests/propsheet.c
View file @
cae20edb
...
...
@@ -122,7 +122,7 @@ static INT_PTR CALLBACK page_dlg_proc(HWND hwnd, UINT msg, WPARAM wparam,
if
(
psp
->
dwFlags
&
PSP_USETITLE
)
{
todo_wine
ok
(
!
strcmp
(
psp
->
pszTitle
,
"page title"
),
"psp->pszTitle = %s
\n
"
,
ok
(
!
strcmp
(
psp
->
pszTitle
,
"page title"
),
"psp->pszTitle = %s
\n
"
,
wine_dbgstr_a
(
psp
->
pszTitle
));
}
return
TRUE
;
...
...
@@ -1051,7 +1051,7 @@ static UINT CALLBACK proppage_callback_a(HWND hwnd, UINT msg, PROPSHEETPAGEA *ps
ok
(
psp
->
lParam
&&
psp
->
lParam
!=
(
LPARAM
)
psp
,
"Expected newly allocated page description, got %Ix, %p
\n
"
,
psp
->
lParam
,
psp
);
if
(
psp
->
dwFlags
&
PSP_USETITLE
)
todo_wine
ok
(
psp_orig
->
pszTitle
!=
psp
->
pszTitle
,
"Expected different page title pointer
\n
"
);
ok
(
psp_orig
->
pszTitle
!=
psp
->
pszTitle
,
"Expected different page title pointer
\n
"
);
else
ok
(
psp_orig
->
pszTitle
==
psp
->
pszTitle
,
"Expected same page title pointer
\n
"
);
ok
(
!
lstrcmpA
(
psp_orig
->
pszTitle
,
psp
->
pszTitle
),
"Expected same page title string
\n
"
);
...
...
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