Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
7df2d9f1
Commit
7df2d9f1
authored
Jul 24, 2002
by
Andreas Mohr
Committed by
Alexandre Julliard
Jul 24, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Misc spelling fixes.
parent
609c93df
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
9 deletions
+8
-9
freetype.c
dlls/gdi/freetype.c
+1
-1
driver.c
dlls/msacm/driver.c
+1
-2
url.c
dlls/shlwapi/url.c
+4
-4
win.c
windows/win.c
+1
-1
winproc.c
windows/winproc.c
+1
-1
No files found.
dlls/gdi/freetype.c
View file @
7df2d9f1
...
...
@@ -1059,7 +1059,7 @@ not_found:
else
ret
->
charset
=
get_nearest_charset
(
face
);
TRACE
(
"Cho
osen
%s %s
\n
"
,
debugstr_w
(
family
->
FamilyName
),
TRACE
(
"Cho
sen:
%s %s
\n
"
,
debugstr_w
(
family
->
FamilyName
),
debugstr_w
(
face
->
StyleName
));
ret
->
ft_face
=
OpenFontFile
(
ret
,
face
->
file
,
face
->
face_index
,
...
...
dlls/msacm/driver.c
View file @
7df2d9f1
...
...
@@ -366,7 +366,7 @@ MMRESULT WINAPI acmDriverPriority(HACMDRIVERID hadid, DWORD dwPriority, DWORD fd
return
MMSYSERR_ERROR
;
for
(
dwPriorityCounter
=
1
;
;
dwPriorityCounter
++
)
{
snprintf
(
szSubKey
,
17
,
"Priorty%ld"
,
dwPriorityCounter
);
snprintf
(
szSubKey
,
17
,
"Prior
i
ty%ld"
,
dwPriorityCounter
);
lError
=
RegQueryValueA
(
hPriorityKey
,
szSubKey
,
szBuffer
,
&
lBufferLength
);
if
(
lError
!=
ERROR_SUCCESS
)
break
;
...
...
@@ -399,4 +399,3 @@ MMRESULT WINAPI acmDriverRemove(HACMDRIVERID hadid, DWORD fdwRemove)
return
MMSYSERR_NOERROR
;
}
dlls/shlwapi/url.c
View file @
7df2d9f1
...
...
@@ -705,7 +705,7 @@ HRESULT WINAPI UrlCombineW(LPCWSTR pszBase, LPCWSTR pszRelative,
* buffer size (including room for the '\0').
*
* By default the function stops converting at the first '?' or
* '#'. [MSDN says differently]. If URL_ESCAPE_SPACE_ONLY flag is set
* '#'. [MSDN says differently]. If URL_ESCAPE_SPACE
S
_ONLY flag is set
* then only spaces are converted, but the conversion continues past a
* '?' or '#'.
*
...
...
@@ -750,7 +750,7 @@ HRESULT WINAPI UrlEscapeA(
URL_ESCAPE_SEGMENT_ONLY
);
else
/* if SPACES_ONLY *not* specified the assume DONT_ESCAPE_EXTRA_INFO */
/* if SPACES_ONLY *not* specified the
n
assume DONT_ESCAPE_EXTRA_INFO */
dwFlags
|=
URL_DONT_ESCAPE_EXTRA_INFO
;
for
(
src
=
pszUrl
;
*
src
;
src
++
)
{
...
...
@@ -1030,7 +1030,7 @@ HRESULT WINAPI UrlUnescapeW(
* Neither V4 nor V5 of shlwapi.dll implement the '?' and always return
* a NULL.
* MSDN further states that:
* "If a file URL has a query string, the
r returned string
* "If a file URL has a query string, the
returned string is
* the query string."
* In all test cases if the scheme starts with "fi" then a NULL is
* returned. V5 gives the following results:
...
...
@@ -1349,7 +1349,7 @@ HRESULT WINAPI UrlApplySchemeW(LPCWSTR pszIn, LPWSTR pszOut, LPDWORD pcchOut, DW
}
strcpyW
(
pszOut
,
pszIn
);
*
pcchOut
=
strlenW
(
pszOut
);
TRACE
(
"returing copy, left alone
\n
"
);
TRACE
(
"retur
n
ing copy, left alone
\n
"
);
return
S_FALSE
;
}
...
...
windows/win.c
View file @
7df2d9f1
...
...
@@ -235,7 +235,7 @@ static void get_server_window_text( HWND hwnd, LPWSTR text, INT count )
* WIN_GetPtr
*
* Return a pointer to the WND structure if local to the process,
* or WND_OTHER_PROCESS i
s
handle may be valid in other process.
* or WND_OTHER_PROCESS i
f
handle may be valid in other process.
* If ret value is a valid pointer, it must be released with WIN_ReleasePtr.
*/
WND
*
WIN_GetPtr
(
HWND
hwnd
)
...
...
windows/winproc.c
View file @
7df2d9f1
...
...
@@ -520,7 +520,7 @@ void WINPROC_FreeProc( HWINDOWPROC proc, WINDOWPROCUSER user )
{
WINDOWPROC
*
next
=
((
WINDOWPROC
*
)
proc
)
->
next
;
if
(((
WINDOWPROC
*
)
proc
)
->
user
!=
user
)
break
;
TRACE_
(
win
)(
"freeing %08x
\n
"
,
(
UINT
)
proc
);
TRACE_
(
win
)(
"freeing %08x
(%d)
\n
"
,
(
UINT
)
proc
,
user
);
HeapFree
(
WinProcHeap
,
0
,
proc
);
proc
=
next
;
}
...
...
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