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
61a8b946
Commit
61a8b946
authored
May 15, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
May 15, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20: ME_MakeString() is unused so remove it.
parent
bbac7d9f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
6 deletions
+0
-6
editor.h
dlls/riched20/editor.h
+0
-1
string.c
dlls/riched20/string.c
+0
-5
No files found.
dlls/riched20/editor.h
View file @
61a8b946
...
...
@@ -86,7 +86,6 @@ void ME_DumpDocument(ME_TextBuffer *buffer);
const
char
*
ME_GetDITypeName
(
ME_DIType
type
);
/* string.c */
ME_String
*
ME_MakeString
(
LPCWSTR
szText
);
ME_String
*
ME_MakeStringN
(
LPCWSTR
szText
,
int
nMaxChars
);
ME_String
*
ME_MakeStringR
(
WCHAR
cRepeat
,
int
nMaxChars
);
ME_String
*
ME_StrDup
(
const
ME_String
*
s
);
...
...
dlls/riched20/string.c
View file @
61a8b946
...
...
@@ -49,11 +49,6 @@ ME_String *ME_MakeStringN(LPCWSTR szText, int nMaxChars)
return
s
;
}
ME_String
*
ME_MakeString
(
LPCWSTR
szText
)
{
return
ME_MakeStringN
(
szText
,
lstrlenW
(
szText
));
}
/* Make a string by repeating a char nMaxChars times */
ME_String
*
ME_MakeStringR
(
WCHAR
cRepeat
,
int
nMaxChars
)
{
...
...
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