Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
64c1b792
Commit
64c1b792
authored
Jan 03, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 03, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Don't prefer to forward a few more calls in nsIURL implementation.
parent
0aefffe9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
9 deletions
+0
-9
nsio.c
dlls/mshtml/nsio.c
+0
-9
No files found.
dlls/mshtml/nsio.c
View file @
64c1b792
...
...
@@ -1933,9 +1933,6 @@ static nsresult NSAPI nsURI_GetPath(nsIURL *iface, nsACString *aPath)
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
aPath
);
if
(
This
->
nsuri
)
return
nsIURI_GetPath
(
This
->
nsuri
,
aPath
);
return
get_uri_string
(
This
,
Uri_PROPERTY_PATH
,
aPath
);
}
...
...
@@ -2060,9 +2057,6 @@ static nsresult NSAPI nsURI_Resolve(nsIURL *iface, const nsACString *aRelativePa
TRACE
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_nsacstr
(
aRelativePath
),
_retval
);
if
(
This
->
nsuri
)
return
nsIURI_Resolve
(
This
->
nsuri
,
aRelativePath
,
_retval
);
nsACString_GetData
(
aRelativePath
,
&
patha
);
path
=
heap_strdupAtoW
(
patha
);
if
(
!
path
)
...
...
@@ -2184,9 +2178,6 @@ static nsresult NSAPI nsURL_GetQuery(nsIURL *iface, nsACString *aQuery)
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
aQuery
);
if
(
This
->
nsurl
)
return
nsIURL_GetQuery
(
This
->
nsurl
,
aQuery
);
return
get_uri_string
(
This
,
Uri_PROPERTY_QUERY
,
aQuery
);
}
...
...
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