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
f894862e
Commit
f894862e
authored
May 18, 2010
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 18, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Fix SysLink debug channel name, add a trace.
parent
127733eb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
string.c
dlls/comctl32/string.c
+1
-1
syslink.c
dlls/comctl32/syslink.c
+3
-1
No files found.
dlls/comctl32/string.c
View file @
f894862e
...
...
@@ -235,7 +235,7 @@ INT WINAPI Str_GetPtrW (LPCWSTR lpSrc, LPWSTR lpDest, INT nMaxLen)
*/
BOOL
WINAPI
Str_SetPtrW
(
LPWSTR
*
lppDest
,
LPCWSTR
lpSrc
)
{
TRACE
(
"(%p %
p)
\n
"
,
lppDest
,
lpSrc
);
TRACE
(
"(%p %
s)
\n
"
,
lppDest
,
debugstr_w
(
lpSrc
)
);
if
(
lpSrc
)
{
INT
len
=
strlenW
(
lpSrc
)
+
1
;
...
...
dlls/comctl32/syslink.c
View file @
f894862e
...
...
@@ -39,7 +39,7 @@
#include "wine/unicode.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
progress
);
WINE_DEFAULT_DEBUG_CHANNEL
(
syslink
);
INT
WINAPI
StrCmpNIW
(
LPCWSTR
,
LPCWSTR
,
INT
);
...
...
@@ -198,6 +198,8 @@ static UINT SYSLINK_ParseText (SYSLINK_INFO *infoPtr, LPCWSTR Text)
LPCWSTR
lpID
,
lpUrl
;
UINT
lenId
,
lenUrl
;
TRACE
(
"(%p %s)
\n
"
,
infoPtr
,
debugstr_w
(
Text
));
for
(
current
=
Text
;
*
current
!=
0
;)
{
if
(
*
current
==
'<'
)
...
...
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