Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
01593894
Commit
01593894
authored
13 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
browseui: Make sure that common controls are loaded before creating the dialog.
parent
cdaf3c00
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/browseui/Makefile.in
+1
-1
1 addition, 1 deletion
dlls/browseui/Makefile.in
dlls/browseui/progressdlg.c
+3
-0
3 additions, 0 deletions
dlls/browseui/progressdlg.c
with
4 additions
and
1 deletion
dlls/browseui/Makefile.in
+
1
−
1
View file @
01593894
MODULE
=
browseui.dll
IMPORTS
=
uuid ole32 user32 advapi32
IMPORTS
=
uuid ole32
comctl32
user32 advapi32
EXTRADEFS
=
-DCOM_NO_WINDOWS_H
C_SRCS
=
\
...
...
This diff is collapsed.
Click to expand it.
dlls/browseui/progressdlg.c
+
3
−
0
View file @
01593894
...
...
@@ -304,6 +304,7 @@ static ULONG WINAPI ProgressDialog_Release(IProgressDialog *iface)
static
HRESULT
WINAPI
ProgressDialog_StartProgressDialog
(
IProgressDialog
*
iface
,
HWND
hwndParent
,
IUnknown
*
punkEnableModeless
,
DWORD
dwFlags
,
LPCVOID
reserved
)
{
static
const
INITCOMMONCONTROLSEX
init
=
{
sizeof
(
init
),
ICC_ANIMATE_CLASS
};
ProgressDialog
*
This
=
impl_from_IProgressDialog
(
iface
);
struct
create_params
params
;
HANDLE
hThread
;
...
...
@@ -316,6 +317,8 @@ static HRESULT WINAPI ProgressDialog_StartProgressDialog(IProgressDialog *iface,
if
(
dwFlags
&
PROGDLG_NOTIME
)
FIXME
(
"Flags PROGDLG_NOTIME not supported
\n
"
);
InitCommonControlsEx
(
&
init
);
EnterCriticalSection
(
&
This
->
cs
);
if
(
This
->
hwnd
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment