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
ba229eed
Commit
ba229eed
authored
Jan 20, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 20, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Forward nsIURL::[Get|Set]FilePath to nsIURI::[Get|Set]Path.
parent
03ca06e7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
12 deletions
+2
-12
nsio.c
dlls/mshtml/nsio.c
+2
-12
No files found.
dlls/mshtml/nsio.c
View file @
ba229eed
...
...
@@ -2130,11 +2130,7 @@ static nsresult NSAPI nsURL_GetFilePath(nsIURL *iface, nsACString *aFilePath)
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
aFilePath
);
if
(
This
->
nsurl
)
return
nsIURL_GetFilePath
(
This
->
nsurl
,
aFilePath
);
FIXME
(
"default action not implemented
\n
"
);
return
NS_ERROR_NOT_IMPLEMENTED
;
return
nsIURL_GetPath
(
&
This
->
nsIURL_iface
,
aFilePath
);
}
static
nsresult
NSAPI
nsURL_SetFilePath
(
nsIURL
*
iface
,
const
nsACString
*
aFilePath
)
...
...
@@ -2143,13 +2139,7 @@ static nsresult NSAPI nsURL_SetFilePath(nsIURL *iface, const nsACString *aFilePa
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_nsacstr
(
aFilePath
));
if
(
This
->
nsurl
)
{
invalidate_uri
(
This
);
return
nsIURL_SetFilePath
(
This
->
nsurl
,
aFilePath
);
}
FIXME
(
"default action not implemented
\n
"
);
return
NS_ERROR_NOT_IMPLEMENTED
;
return
nsIURL_SetPath
(
&
This
->
nsIURL_iface
,
aFilePath
);
}
static
nsresult
NSAPI
nsURL_GetParam
(
nsIURL
*
iface
,
nsACString
*
aParam
)
...
...
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