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
604350be
Commit
604350be
authored
Feb 03, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 03, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Don't try forwarding calls to Gecko that are not implemented there anyways.
parent
3311bbb3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
21 deletions
+6
-21
nsio.c
dlls/mshtml/nsio.c
+6
-21
No files found.
dlls/mshtml/nsio.c
View file @
604350be
...
...
@@ -1850,14 +1850,9 @@ static nsresult NSAPI nsURI_SetHostPort(nsIURL *iface, const nsACString *aHostPo
{
nsWineURI
*
This
=
impl_from_nsIURL
(
iface
);
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_nsacstr
(
aHostPort
));
WARN
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_nsacstr
(
aHostPort
));
if
(
This
->
nsuri
)
{
invalidate_uri
(
This
);
return
nsIURI_SetHostPort
(
This
->
nsuri
,
aHostPort
);
}
FIXME
(
"default action not implemented
\n
"
);
/* Not implemented by Gecko */
return
NS_ERROR_NOT_IMPLEMENTED
;
}
...
...
@@ -2159,14 +2154,9 @@ static nsresult NSAPI nsURL_SetParam(nsIURL *iface, const nsACString *aParam)
{
nsWineURI
*
This
=
impl_from_nsIURL
(
iface
);
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_nsacstr
(
aParam
));
WARN
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_nsacstr
(
aParam
));
if
(
This
->
nsurl
)
{
invalidate_uri
(
This
);
return
nsIURL_SetParam
(
This
->
nsurl
,
aParam
);
}
FIXME
(
"default action not implemented
\n
"
);
/* Not implemented by Gecko */
return
NS_ERROR_NOT_IMPLEMENTED
;
}
...
...
@@ -2274,14 +2264,9 @@ static nsresult NSAPI nsURL_SetDirectory(nsIURL *iface, const nsACString *aDirec
{
nsWineURI
*
This
=
impl_from_nsIURL
(
iface
);
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_nsacstr
(
aDirectory
));
WARN
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_nsacstr
(
aDirectory
));
if
(
This
->
nsurl
)
{
invalidate_uri
(
This
);
return
nsIURL_SetDirectory
(
This
->
nsurl
,
aDirectory
);
}
FIXME
(
"default action not implemented
\n
"
);
/* Not implemented by Gecko */
return
NS_ERROR_NOT_IMPLEMENTED
;
}
...
...
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