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
661208f0
Commit
661208f0
authored
Dec 04, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Dec 04, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Make nsACString_{Init,Finish}() static.
parent
ee3c8794
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
mshtml_private.h
dlls/mshtml/mshtml_private.h
+0
-2
nsembed.c
dlls/mshtml/nsembed.c
+2
-2
No files found.
dlls/mshtml/mshtml_private.h
View file @
661208f0
...
...
@@ -684,10 +684,8 @@ HRESULT call_set_active_object(IOleInPlaceUIWindow*,IOleInPlaceActiveObject*);
void
*
nsalloc
(
size_t
)
__WINE_ALLOC_SIZE
(
1
);
void
nsfree
(
void
*
);
void
nsACString_Init
(
nsACString
*
,
const
char
*
);
void
nsACString_SetData
(
nsACString
*
,
const
char
*
);
PRUint32
nsACString_GetData
(
const
nsACString
*
,
const
char
**
);
void
nsACString_Finish
(
nsACString
*
);
void
nsAString_Init
(
nsAString
*
,
const
PRUnichar
*
);
void
nsAString_SetData
(
nsAString
*
,
const
PRUnichar
*
);
...
...
dlls/mshtml/nsembed.c
View file @
661208f0
...
...
@@ -533,7 +533,7 @@ void nsfree(void *mem)
nsIMemory_Free
(
nsmem
,
mem
);
}
void
nsACString_Init
(
nsACString
*
str
,
const
char
*
data
)
static
void
nsACString_Init
(
nsACString
*
str
,
const
char
*
data
)
{
NS_CStringContainerInit
(
str
);
if
(
data
)
...
...
@@ -550,7 +550,7 @@ PRUint32 nsACString_GetData(const nsACString *str, const char **data)
return
NS_CStringGetData
(
str
,
data
,
NULL
);
}
void
nsACString_Finish
(
nsACString
*
str
)
static
void
nsACString_Finish
(
nsACString
*
str
)
{
NS_CStringContainerFinish
(
str
);
}
...
...
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