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
8a755f37
Commit
8a755f37
authored
Mar 06, 2015
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Mar 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ieframe/tests: Merge adjacent identical if's (PVS-Studio).
parent
9e7135e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
webbrowser.c
dlls/ieframe/tests/webbrowser.c
+10
-6
No files found.
dlls/ieframe/tests/webbrowser.c
View file @
8a755f37
...
...
@@ -2684,9 +2684,11 @@ static void test_Navigate2(IWebBrowser2 *webbrowser, const char *nav_url)
SET_EXPECT
(
GetOptionKeyPath
);
SET_EXPECT
(
GetOverridesKeyPath
);
}
if
(
use_container_olecmd
)
SET_EXPECT
(
QueryStatus_SETPROGRESSTEXT
);
if
(
use_container_olecmd
)
SET_EXPECT
(
Exec_SETPROGRESSMAX
);
if
(
use_container_olecmd
)
SET_EXPECT
(
Exec_SETPROGRESSPOS
);
if
(
use_container_olecmd
)
{
SET_EXPECT
(
QueryStatus_SETPROGRESSTEXT
);
SET_EXPECT
(
Exec_SETPROGRESSMAX
);
SET_EXPECT
(
Exec_SETPROGRESSPOS
);
}
SET_EXPECT
(
Invoke_SETSECURELOCKICON
);
SET_EXPECT
(
Invoke_FILEDOWNLOAD
);
if
(
use_container_olecmd
)
SET_EXPECT
(
Exec_SETDOWNLOADSTATE_0
);
...
...
@@ -2725,9 +2727,11 @@ static void test_Navigate2(IWebBrowser2 *webbrowser, const char *nav_url)
CLEAR_CALLED
(
GetOptionKeyPath
);
CHECK_CALLED
(
GetOverridesKeyPath
);
}
if
(
use_container_olecmd
)
todo_wine
CHECK_CALLED
(
QueryStatus_SETPROGRESSTEXT
);
if
(
use_container_olecmd
)
todo_wine
CHECK_CALLED
(
Exec_SETPROGRESSMAX
);
if
(
use_container_olecmd
)
todo_wine
CHECK_CALLED
(
Exec_SETPROGRESSPOS
);
if
(
use_container_olecmd
)
{
todo_wine
CHECK_CALLED
(
QueryStatus_SETPROGRESSTEXT
);
todo_wine
CHECK_CALLED
(
Exec_SETPROGRESSMAX
);
todo_wine
CHECK_CALLED
(
Exec_SETPROGRESSPOS
);
}
todo_wine
CHECK_CALLED
(
Invoke_SETSECURELOCKICON
);
todo_wine
CHECK_CALLED
(
Invoke_FILEDOWNLOAD
);
...
...
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