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
a0de33b4
Commit
a0de33b4
authored
Sep 07, 2007
by
Mikolaj Zalewski
Committed by
Alexandre Julliard
Sep 10, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Hide the progress bar while asking the user if Gecko should be installed.
parent
a7558ce7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
install.c
dlls/mshtml/install.c
+2
-0
No files found.
dlls/mshtml/install.c
View file @
a0de33b4
...
...
@@ -368,6 +368,7 @@ static INT_PTR CALLBACK installer_proc(HWND hwnd, UINT msg, WPARAM wParam, LPARA
{
switch
(
msg
)
{
case
WM_INITDIALOG
:
ShowWindow
(
GetDlgItem
(
hwnd
,
ID_DWL_PROGRESS
),
SW_HIDE
);
install_dialog
=
hwnd
;
return
TRUE
;
...
...
@@ -378,6 +379,7 @@ static INT_PTR CALLBACK installer_proc(HWND hwnd, UINT msg, WPARAM wParam, LPARA
return
FALSE
;
case
ID_DWL_INSTALL
:
ShowWindow
(
GetDlgItem
(
hwnd
,
ID_DWL_PROGRESS
),
SW_SHOW
);
EnableWindow
(
GetDlgItem
(
hwnd
,
ID_DWL_INSTALL
),
0
);
EnableWindow
(
GetDlgItem
(
hwnd
,
IDCANCEL
),
0
);
/* FIXME */
CreateThread
(
NULL
,
0
,
download_proc
,
NULL
,
0
,
NULL
);
...
...
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