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
e0537210
Commit
e0537210
authored
Jun 20, 2014
by
Francois Gouget
Committed by
Alexandre Julliard
Jun 23, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Remove nsAString_SetData() because it is unused.
parent
9d82ee5c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
6 deletions
+0
-6
mshtml_private.h
dlls/mshtml/mshtml_private.h
+0
-1
nsembed.c
dlls/mshtml/nsembed.c
+0
-5
No files found.
dlls/mshtml/mshtml_private.h
View file @
e0537210
...
@@ -827,7 +827,6 @@ void nsACString_Finish(nsACString*) DECLSPEC_HIDDEN;
...
@@ -827,7 +827,6 @@ void nsACString_Finish(nsACString*) DECLSPEC_HIDDEN;
BOOL
nsAString_Init
(
nsAString
*
,
const
PRUnichar
*
)
DECLSPEC_HIDDEN
;
BOOL
nsAString_Init
(
nsAString
*
,
const
PRUnichar
*
)
DECLSPEC_HIDDEN
;
void
nsAString_InitDepend
(
nsAString
*
,
const
PRUnichar
*
)
DECLSPEC_HIDDEN
;
void
nsAString_InitDepend
(
nsAString
*
,
const
PRUnichar
*
)
DECLSPEC_HIDDEN
;
void
nsAString_SetData
(
nsAString
*
,
const
PRUnichar
*
)
DECLSPEC_HIDDEN
;
UINT32
nsAString_GetData
(
const
nsAString
*
,
const
PRUnichar
**
)
DECLSPEC_HIDDEN
;
UINT32
nsAString_GetData
(
const
nsAString
*
,
const
PRUnichar
**
)
DECLSPEC_HIDDEN
;
void
nsAString_Finish
(
nsAString
*
)
DECLSPEC_HIDDEN
;
void
nsAString_Finish
(
nsAString
*
)
DECLSPEC_HIDDEN
;
HRESULT
return_nsstr
(
nsresult
,
nsAString
*
,
BSTR
*
)
DECLSPEC_HIDDEN
;
HRESULT
return_nsstr
(
nsresult
,
nsAString
*
,
BSTR
*
)
DECLSPEC_HIDDEN
;
...
...
dlls/mshtml/nsembed.c
View file @
e0537210
...
@@ -836,11 +836,6 @@ void nsAString_InitDepend(nsAString *str, const PRUnichar *data)
...
@@ -836,11 +836,6 @@ void nsAString_InitDepend(nsAString *str, const PRUnichar *data)
NS_StringContainerInit2
(
str
,
data
,
PR_UINT32_MAX
,
NS_STRING_CONTAINER_INIT_DEPEND
);
NS_StringContainerInit2
(
str
,
data
,
PR_UINT32_MAX
,
NS_STRING_CONTAINER_INIT_DEPEND
);
}
}
void
nsAString_SetData
(
nsAString
*
str
,
const
PRUnichar
*
data
)
{
NS_StringSetData
(
str
,
data
,
PR_UINT32_MAX
);
}
UINT32
nsAString_GetData
(
const
nsAString
*
str
,
const
PRUnichar
**
data
)
UINT32
nsAString_GetData
(
const
nsAString
*
str
,
const
PRUnichar
**
data
)
{
{
return
NS_StringGetData
(
str
,
data
,
NULL
);
return
NS_StringGetData
(
str
,
data
,
NULL
);
...
...
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