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
824e452a
Commit
824e452a
authored
Apr 09, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Apr 10, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Void functions should not return a value.
parent
e04f6be3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
task.c
dlls/mshtml/task.c
+8
-4
No files found.
dlls/mshtml/task.c
View file @
824e452a
...
...
@@ -227,13 +227,17 @@ static void process_task(task_t *task)
{
switch
(
task
->
task_id
)
{
case
TASK_SETDOWNLOADSTATE
:
return
set_downloading
(
task
->
doc
);
set_downloading
(
task
->
doc
);
break
;
case
TASK_PARSECOMPLETE
:
return
set_parsecomplete
(
task
->
doc
);
set_parsecomplete
(
task
->
doc
);
break
;
case
TASK_SETPROGRESS
:
return
set_progress
(
task
->
doc
);
set_progress
(
task
->
doc
);
break
;
case
TASK_START_BINDING
:
return
task_start_binding
(
task
->
bscallback
);
task_start_binding
(
task
->
bscallback
);
break
;
default:
ERR
(
"Wrong task_id %d
\n
"
,
task
->
task_id
);
}
...
...
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