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
f314e5e7
Commit
f314e5e7
authored
Aug 21, 2000
by
Gerard Patel
Committed by
Alexandre Julliard
Aug 21, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable the owner of a modal dialog box just before creating the
dialog window.
parent
242d23e9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
104 additions
and
32 deletions
+104
-32
propsheet.c
dlls/comctl32/propsheet.c
+1
-1
dialog.h
include/dialog.h
+1
-0
dialog.c
windows/dialog.c
+102
-31
No files found.
dlls/comctl32/propsheet.c
View file @
f314e5e7
...
...
@@ -360,7 +360,7 @@ static INT PROPSHEET_DoDialogBox( HWND hwnd, HWND owner)
if
(
!
(
wndPtr
=
WIN_FindWndPtr
(
hwnd
)))
return
-
1
;
dlgInfo
=
(
DIALOGINFO
*
)
wndPtr
->
wExtra
;
if
(
!
dlgInfo
->
flags
&
DF_END
)
/* was EndDialog called in WM_INITDIALOG ? */
if
(
!
(
dlgInfo
->
flags
&
DF_END
)
)
/* was EndDialog called in WM_INITDIALOG ? */
{
EnableWindow
(
owner
,
FALSE
);
ShowWindow
(
hwnd
,
SW_SHOW
);
...
...
include/dialog.h
View file @
f314e5e7
...
...
@@ -37,6 +37,7 @@ typedef struct
#include "poppack.h"
#define DF_END 0x0001
#define DF_OWNERENABLED 0x0002
extern
BOOL
DIALOG_Init
(
void
);
...
...
windows/dialog.c
View file @
f314e5e7
This diff is collapsed.
Click to expand it.
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