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
72d09710
Commit
72d09710
authored
Dec 17, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 17, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Remove not used argument of nsACString_GetData.
parent
b1ce93f9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
mshtml_private.h
dlls/mshtml/mshtml_private.h
+1
-1
nsembed.c
dlls/mshtml/nsembed.c
+3
-3
nsio.c
dlls/mshtml/nsio.c
+5
-5
No files found.
dlls/mshtml/mshtml_private.h
View file @
72d09710
...
...
@@ -408,7 +408,7 @@ void nsfree(void*);
void
nsACString_Init
(
nsACString
*
,
const
char
*
);
void
nsACString_SetData
(
nsACString
*
,
const
char
*
);
PRUint32
nsACString_GetData
(
const
nsACString
*
,
const
char
**
,
PRBool
*
);
PRUint32
nsACString_GetData
(
const
nsACString
*
,
const
char
**
);
void
nsACString_Finish
(
nsACString
*
);
void
nsAString_Init
(
nsAString
*
,
const
PRUnichar
*
);
...
...
dlls/mshtml/nsembed.c
View file @
72d09710
...
...
@@ -472,9 +472,9 @@ void nsACString_SetData(nsACString *str, const char *data)
NS_CStringSetData
(
str
,
data
,
PR_UINT32_MAX
);
}
PRUint32
nsACString_GetData
(
const
nsACString
*
str
,
const
char
**
data
,
PRBool
*
termited
)
PRUint32
nsACString_GetData
(
const
nsACString
*
str
,
const
char
**
data
)
{
return
NS_CStringGetData
(
str
,
data
,
termited
);
return
NS_CStringGetData
(
str
,
data
,
NULL
);
}
void
nsACString_Finish
(
nsACString
*
str
)
...
...
@@ -1104,7 +1104,7 @@ static nsresult NSAPI nsURIContentListener_OnStartURIOpen(nsIURIContentListener
nsACString_Init
(
&
spec_str
,
NULL
);
nsIURI_GetSpec
(
aURI
,
&
spec_str
);
nsACString_GetData
(
&
spec_str
,
&
spec
,
NULL
);
nsACString_GetData
(
&
spec_str
,
&
spec
);
TRACE
(
"(%p)->(%p(%s) %p)
\n
"
,
This
,
aURI
,
debugstr_a
(
spec
),
_retval
);
...
...
dlls/mshtml/nsio.c
View file @
72d09710
...
...
@@ -505,7 +505,7 @@ static nsresult NSAPI nsChannel_GetContentCharset(nsIHttpChannel *iface,
if
(
This
->
channel
)
{
nsresult
nsres
=
nsIChannel_GetContentCharset
(
This
->
channel
,
aContentCharset
);
const
char
*
ch
;
nsACString_GetData
(
aContentCharset
,
&
ch
,
NULL
);
nsACString_GetData
(
aContentCharset
,
&
ch
);
return
nsres
;
}
...
...
@@ -589,7 +589,7 @@ static BOOL do_load_from_moniker_hack(nsChannel *This)
if
(
NS_SUCCEEDED
(
nsres
))
{
const
char
*
scheme
;
nsACString_GetData
(
&
scheme_str
,
&
scheme
,
NULL
);
nsACString_GetData
(
&
scheme_str
,
&
scheme
);
ret
=
!
strcmp
(
scheme
,
"wine"
);
}
...
...
@@ -1101,7 +1101,7 @@ static nsresult NSAPI nsUploadChannel_SetUploadStream(nsIUploadChannel *iface,
nsIInputStream_Release
(
This
->
post_data_stream
);
if
(
aContentType
)
{
nsACString_GetData
(
aContentType
,
&
content_type
,
NULL
);
nsACString_GetData
(
aContentType
,
&
content_type
);
if
(
*
content_type
)
FIXME
(
"Unsupported aContentType argument: %s
\n
"
,
debugstr_a
(
content_type
));
}
...
...
@@ -1982,7 +1982,7 @@ static nsresult NSAPI nsIOService_NewURI(nsIIOService *iface, const nsACString *
BOOL
is_wine_uri
=
FALSE
;
nsresult
nsres
;
nsACString_GetData
(
aSpec
,
&
spec
,
NULL
);
nsACString_GetData
(
aSpec
,
&
spec
);
TRACE
(
"(%p(%s) %s %p %p)
\n
"
,
aSpec
,
debugstr_a
(
spec
),
debugstr_a
(
aOriginCharset
),
aBaseURI
,
_retval
);
...
...
@@ -2003,7 +2003,7 @@ static nsresult NSAPI nsIOService_NewURI(nsIIOService *iface, const nsACString *
nsres
=
nsIURI_GetSpec
(
aBaseURI
,
&
base_uri_str
);
if
(
NS_SUCCEEDED
(
nsres
))
{
nsACString_GetData
(
&
base_uri_str
,
&
base_uri
,
NULL
);
nsACString_GetData
(
&
base_uri_str
,
&
base_uri
);
TRACE
(
"base_uri=%s
\n
"
,
debugstr_a
(
base_uri
));
}
else
{
ERR
(
"GetSpec failed: %08x
\n
"
,
nsres
);
...
...
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