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
ee285b7a
Commit
ee285b7a
authored
May 11, 2001
by
Francois Gouget
Committed by
Alexandre Julliard
May 11, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unnecessary single quoting of debugstr_xxx strings.
parent
f16d0492
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
19 additions
and
19 deletions
+19
-19
listbox.c
controls/listbox.c
+1
-1
avifile.c
dlls/avifil32/avifile.c
+2
-2
status.c
dlls/comctl32/status.c
+1
-1
tab.c
dlls/comctl32/tab.c
+2
-2
filedlg.c
dlls/commdlg/filedlg.c
+2
-2
data.c
dlls/msvcrt/data.c
+1
-1
dir.c
dlls/msvcrt/dir.c
+2
-2
typelib.c
dlls/oleaut32/typelib.c
+1
-1
shellord.c
dlls/shell32/shellord.c
+1
-1
font.c
dlls/wineps/font.c
+1
-1
drive.c
files/drive.c
+1
-1
init.c
graphics/enhmetafiledrv/init.c
+1
-1
font.c
graphics/win16drv/font.c
+1
-1
xfont.c
graphics/x11drv/xfont.c
+1
-1
font.c
objects/font.c
+1
-1
No files found.
controls/listbox.c
View file @
ee285b7a
...
...
@@ -1554,7 +1554,7 @@ static LRESULT LISTBOX_InsertString( WND *wnd, LB_DESCR *descr, INT index,
return
ret
;
}
TRACE
(
"[%04x]: added item %d
'%s'
\n
"
,
TRACE
(
"[%04x]: added item %d
%s
\n
"
,
wnd
->
hwndSelf
,
index
,
HAS_STRINGS
(
descr
)
?
debugstr_w
(
new_str
)
:
""
);
return
index
;
}
...
...
dlls/avifil32/avifile.c
View file @
ee285b7a
...
...
@@ -174,7 +174,7 @@ static HRESULT WINAPI IAVIFile_fnCreateStream(IAVIFile*iface,PAVISTREAM*avis,AVI
FIXME
(
"
\t
fccHandler '%s'
\n
"
,
fcc
);
FIXME
(
"
\t
dwFlags 0x%08lx
\n
"
,
asi
->
dwFlags
);
FIXME
(
"
\t
dwCaps 0x%08lx
\n
"
,
asi
->
dwCaps
);
FIXME
(
"
\t
name
'%s'
\n
"
,
debugstr_w
(
asi
->
szName
));
FIXME
(
"
\t
name
%s
\n
"
,
debugstr_w
(
asi
->
szName
));
istream
->
curframe
=
0
;
*
avis
=
(
PAVISTREAM
)
istream
;
...
...
@@ -470,7 +470,7 @@ HRESULT WINAPI AVIMakeCompressedStream(PAVISTREAM *ppsCompressed,PAVISTREAM ppsS
return
AVIERR_UNSUPPORTED
;
ICGetInfo
(
as
->
hic
,
&
(
as
->
icinfo
),
sizeof
(
ICINFO
));
FIXME
(
"Opened compressor:
'%s' '%s'
\n
"
,
debugstr_w
(
as
->
icinfo
.
szName
),
debugstr_w
(
as
->
icinfo
.
szDescription
));
FIXME
(
"Opened compressor:
%s %s
\n
"
,
debugstr_w
(
as
->
icinfo
.
szName
),
debugstr_w
(
as
->
icinfo
.
szDescription
));
as
->
iscompressing
=
TRUE
;
memcpy
(
&
(
as
->
aco
),
aco
,
sizeof
(
*
aco
));
if
(
as
->
icinfo
.
dwFlags
&
VIDCF_COMPRESSFRAMES
)
{
...
...
dlls/comctl32/status.c
View file @
ee285b7a
...
...
@@ -738,7 +738,7 @@ STATUSBAR_SetTextW (STATUSWINDOWINFO *infoPtr, HWND hwnd, WPARAM wParam, LPARAM
nPart
=
((
INT
)
wParam
)
&
0x00ff
;
style
=
((
INT
)
wParam
)
&
0xff00
;
TRACE
(
"part %d ->
'%s'
with style %04x
\n
"
,
nPart
,
debugstr_w
(
text
),
style
);
TRACE
(
"part %d ->
%s
with style %04x
\n
"
,
nPart
,
debugstr_w
(
text
),
style
);
if
((
infoPtr
->
simple
)
||
(
infoPtr
->
parts
==
NULL
)
||
(
nPart
==
255
))
part
=
&
infoPtr
->
part0
;
else
...
...
dlls/comctl32/tab.c
View file @
ee285b7a
...
...
@@ -2271,7 +2271,7 @@ TAB_InsertItemA (HWND hwnd, WPARAM wParam, LPARAM lParam)
TAB_SetItemBounds
(
hwnd
);
TAB_InvalidateTabArea
(
hwnd
,
infoPtr
);
TRACE
(
"[%04x]: added item %d
'%s'
\n
"
,
TRACE
(
"[%04x]: added item %d
%s
\n
"
,
hwnd
,
iItem
,
debugstr_w
(
infoPtr
->
items
[
iItem
].
pszText
));
return
iItem
;
...
...
@@ -2340,7 +2340,7 @@ TAB_InsertItemW (HWND hwnd, WPARAM wParam, LPARAM lParam)
TAB_SetItemBounds
(
hwnd
);
TAB_InvalidateTabArea
(
hwnd
,
infoPtr
);
TRACE
(
"[%04x]: added item %d
'%s'
\n
"
,
TRACE
(
"[%04x]: added item %d
%s
\n
"
,
hwnd
,
iItem
,
debugstr_w
(
infoPtr
->
items
[
iItem
].
pszText
));
return
iItem
;
...
...
dlls/commdlg/filedlg.c
View file @
ee285b7a
...
...
@@ -573,7 +573,7 @@ static LONG FILEDLG_WMInitDialog(HWND hWnd, WPARAM wParam, LPARAM lParam)
SendDlgItemMessageW
(
hWnd
,
cmb1
,
CB_SETCURSEL
,
ofn
->
nFilterIndex
-
1
,
0
);
lstrcpynW
(
tmpstr
,
FILEDLG_GetFileType
(
ofn
->
lpstrCustomFilter
,
(
LPWSTR
)
ofn
->
lpstrFilter
,
ofn
->
nFilterIndex
-
1
),
BUFFILE
);
TRACE
(
"nFilterIndex = %ld, SetText of edt1 to
'%s'
\n
"
,
TRACE
(
"nFilterIndex = %ld, SetText of edt1 to
%s
\n
"
,
ofn
->
nFilterIndex
,
debugstr_w
(
tmpstr
));
SetDlgItemTextW
(
hWnd
,
edt1
,
tmpstr
);
/* get drive list */
...
...
@@ -1318,7 +1318,7 @@ BOOL WINAPI GetFileName31W(
FILEDLG_DestroyPrivate
(
lfs
);
}
TRACE
(
"return lpstrFile=
'%s'
!
\n
"
,
debugstr_w
(
lpofn
->
lpstrFile
));
TRACE
(
"return lpstrFile=
%s
!
\n
"
,
debugstr_w
(
lpofn
->
lpstrFile
));
return
bRet
;
}
...
...
dlls/msvcrt/data.c
View file @
ee285b7a
...
...
@@ -154,7 +154,7 @@ void msvcrt_init_args(void)
We will free it at the end of processing. */
cmdline
=
_strdup
(
MSVCRT__acmdln
);
TRACE
(
"got '%s', wide =
'%s'
\n
"
,
cmdline
,
debugstr_w
(
wcmdline
));
TRACE
(
"got '%s', wide =
%s
\n
"
,
cmdline
,
debugstr_w
(
wcmdline
));
version
=
GetVersion
();
MSVCRT__osver
=
version
>>
16
;
...
...
dlls/msvcrt/dir.c
View file @
ee285b7a
...
...
@@ -325,7 +325,7 @@ WCHAR* _wgetdcwd(int drive, WCHAR * buf, int size)
return
NULL
;
/* buf too small */
}
TRACE
(
":returning
'%s'
\n
"
,
debugstr_w
(
dir
));
TRACE
(
":returning
%s
\n
"
,
debugstr_w
(
dir
));
if
(
!
buf
)
return
_wcsdup
(
dir
);
/* allocate */
strcpyW
(
buf
,
dir
);
...
...
@@ -414,7 +414,7 @@ void _wsplitpath(const WCHAR *inpath, WCHAR *drv, WCHAR *dir,
WCHAR
ch
,
*
ptr
,
*
p
;
WCHAR
pathbuff
[
MAX_PATH
],
*
path
=
pathbuff
;
TRACE
(
":splitting path
'%s'
\n
"
,
debugstr_w
(
path
));
TRACE
(
":splitting path
%s
\n
"
,
debugstr_w
(
path
));
/* FIXME: Should be an strncpyW or something */
strcpyW
(
pathbuff
,
inpath
);
...
...
dlls/oleaut32/typelib.c
View file @
ee285b7a
...
...
@@ -215,7 +215,7 @@ HRESULT WINAPI LoadTypeLib16(
LPOLESTR
szFile
,
/* [in] Name of file to load from */
ITypeLib
**
pptLib
)
/* [out] Pointer to pointer to loaded type library */
{
FIXME
(
"(
'%s'
,%p): stub
\n
"
,
debugstr_w
((
LPWSTR
)
szFile
),
pptLib
);
FIXME
(
"(
%s
,%p): stub
\n
"
,
debugstr_w
((
LPWSTR
)
szFile
),
pptLib
);
if
(
pptLib
!=
0
)
*
pptLib
=
0
;
...
...
dlls/shell32/shellord.c
View file @
ee285b7a
...
...
@@ -64,7 +64,7 @@ DWORD WINAPI ParseFieldA(
*/
DWORD
WINAPI
ParseFieldW
(
LPCWSTR
src
,
DWORD
nField
,
LPWSTR
dst
,
DWORD
len
)
{
FIXME
(
"(
'%s',0x%08lx,%p,%ld) stub.
\n
"
,
FIXME
(
"(
%s,0x%08lx,%p,%ld) stub
\n
"
,
debugstr_w
(
src
),
nField
,
dst
,
len
);
return
FALSE
;
}
...
...
dlls/wineps/font.c
View file @
ee285b7a
...
...
@@ -30,7 +30,7 @@ HFONT16 PSDRV_FONT_SelectObject( DC * dc, HFONT16 hfont,
char
FaceName
[
LF_FACESIZE
];
TRACE
(
"FaceName =
'%s'
Height = %ld Italic = %d Weight = %ld
\n
"
,
TRACE
(
"FaceName =
%s
Height = %ld Italic = %d Weight = %ld
\n
"
,
debugstr_w
(
lf
->
lfFaceName
),
lf
->
lfHeight
,
lf
->
lfItalic
,
lf
->
lfWeight
);
...
...
files/drive.c
View file @
ee285b7a
...
...
@@ -1206,7 +1206,7 @@ UINT WINAPI GetDriveTypeA(LPCSTR root) /* [in] String describing drive */
{
if
((
root
[
1
])
&&
(
root
[
1
]
!=
':'
))
{
WARN
(
"invalid root
'%s'
\n
"
,
debugstr_a
(
root
));
WARN
(
"invalid root
%s
\n
"
,
debugstr_a
(
root
));
return
DRIVE_NO_ROOT_DIR
;
}
drive
=
toupper
(
root
[
0
])
-
'A'
;
...
...
graphics/enhmetafiledrv/init.c
View file @
ee285b7a
...
...
@@ -251,7 +251,7 @@ HDC WINAPI CreateEnhMetaFileW(
HFILE
hFile
;
DWORD
size
=
0
,
length
=
0
;
TRACE
(
"
'%s'
\n
"
,
debugstr_w
(
filename
)
);
TRACE
(
"
%s
\n
"
,
debugstr_w
(
filename
)
);
if
(
!
(
dc
=
DC_AllocDC
(
&
EMFDRV_Funcs
)))
return
0
;
dc
->
header
.
wMagic
=
ENHMETAFILE_DC_MAGIC
;
...
...
graphics/win16drv/font.c
View file @
ee285b7a
...
...
@@ -80,7 +80,7 @@ HFONT WIN16DRV_FONT_SelectObject( DC * dc, HFONT hfont, FONTOBJ * font)
dc
->
hFont
=
hfont
;
TRACE
(
"WIN16DRV_FONT_SelectObject
'%s'
h=%ld
\n
"
,
TRACE
(
"WIN16DRV_FONT_SelectObject
%s
h=%ld
\n
"
,
debugstr_w
(
font
->
logfont
.
lfFaceName
),
font
->
logfont
.
lfHeight
);
...
...
graphics/x11drv/xfont.c
View file @
ee285b7a
...
...
@@ -1201,7 +1201,7 @@ static UINT XFONT_GetFontMetric( const fontInfo* pfi,
ptm
->
tmDefaultChar
=
pfi
->
df
.
dfDefaultChar
;
ptm
->
tmBreakChar
=
pfi
->
df
.
dfBreakChar
;
TRACE
(
"Calling Enum proc with FaceName
'%s' FullName '%s'
\n
"
,
TRACE
(
"Calling Enum proc with FaceName
%s FullName %s
\n
"
,
debugstr_w
(
pLF
->
elfLogFont
.
lfFaceName
),
debugstr_w
(
pLF
->
elfFullName
));
...
...
objects/font.c
View file @
ee285b7a
...
...
@@ -453,7 +453,7 @@ HFONT WINAPI CreateFontIndirectW( const LOGFONTW *plf )
{
memcpy
(
&
fontPtr
->
logfont
,
plf
,
sizeof
(
LOGFONTW
)
);
TRACE
(
"(%ld %ld %ld %ld)
'%s'
%s %s => %04x
\n
"
,
TRACE
(
"(%ld %ld %ld %ld)
%s
%s %s => %04x
\n
"
,
plf
->
lfHeight
,
plf
->
lfWidth
,
plf
->
lfEscapement
,
plf
->
lfOrientation
,
debugstr_w
(
plf
->
lfFaceName
),
...
...
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