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
f539d4c9
Commit
f539d4c9
authored
May 24, 2011
by
David Hedberg
Committed by
Alexandre Julliard
May 25, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Change some trace statements to dump strings.
parent
a774152f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
itemdlg.c
dlls/comdlg32/itemdlg.c
+5
-5
No files found.
dlls/comdlg32/itemdlg.c
View file @
f539d4c9
...
@@ -1109,7 +1109,7 @@ static HRESULT WINAPI IFileDialog2_fnGetCurrentSelection(IFileDialog2 *iface, IS
...
@@ -1109,7 +1109,7 @@ static HRESULT WINAPI IFileDialog2_fnGetCurrentSelection(IFileDialog2 *iface, IS
static
HRESULT
WINAPI
IFileDialog2_fnSetFileName
(
IFileDialog2
*
iface
,
LPCWSTR
pszName
)
static
HRESULT
WINAPI
IFileDialog2_fnSetFileName
(
IFileDialog2
*
iface
,
LPCWSTR
pszName
)
{
{
FileDialogImpl
*
This
=
impl_from_IFileDialog2
(
iface
);
FileDialogImpl
*
This
=
impl_from_IFileDialog2
(
iface
);
TRACE
(
"%p (%
p)
\n
"
,
iface
,
pszName
);
TRACE
(
"%p (%
s)
\n
"
,
iface
,
debugstr_w
(
pszName
)
);
set_file_name
(
This
,
pszName
);
set_file_name
(
This
,
pszName
);
...
@@ -1134,7 +1134,7 @@ static HRESULT WINAPI IFileDialog2_fnGetFileName(IFileDialog2 *iface, LPWSTR *ps
...
@@ -1134,7 +1134,7 @@ static HRESULT WINAPI IFileDialog2_fnGetFileName(IFileDialog2 *iface, LPWSTR *ps
static
HRESULT
WINAPI
IFileDialog2_fnSetTitle
(
IFileDialog2
*
iface
,
LPCWSTR
pszTitle
)
static
HRESULT
WINAPI
IFileDialog2_fnSetTitle
(
IFileDialog2
*
iface
,
LPCWSTR
pszTitle
)
{
{
FileDialogImpl
*
This
=
impl_from_IFileDialog2
(
iface
);
FileDialogImpl
*
This
=
impl_from_IFileDialog2
(
iface
);
TRACE
(
"%p (%
p)
\n
"
,
This
,
pszTitle
);
TRACE
(
"%p (%
s)
\n
"
,
This
,
debugstr_w
(
pszTitle
)
);
LocalFree
(
This
->
custom_title
);
LocalFree
(
This
->
custom_title
);
This
->
custom_title
=
StrDupW
(
pszTitle
);
This
->
custom_title
=
StrDupW
(
pszTitle
);
...
@@ -1146,7 +1146,7 @@ static HRESULT WINAPI IFileDialog2_fnSetTitle(IFileDialog2 *iface, LPCWSTR pszTi
...
@@ -1146,7 +1146,7 @@ static HRESULT WINAPI IFileDialog2_fnSetTitle(IFileDialog2 *iface, LPCWSTR pszTi
static
HRESULT
WINAPI
IFileDialog2_fnSetOkButtonLabel
(
IFileDialog2
*
iface
,
LPCWSTR
pszText
)
static
HRESULT
WINAPI
IFileDialog2_fnSetOkButtonLabel
(
IFileDialog2
*
iface
,
LPCWSTR
pszText
)
{
{
FileDialogImpl
*
This
=
impl_from_IFileDialog2
(
iface
);
FileDialogImpl
*
This
=
impl_from_IFileDialog2
(
iface
);
TRACE
(
"%p (%
p)
\n
"
,
This
,
pszText
);
TRACE
(
"%p (%
s)
\n
"
,
This
,
debugstr_w
(
pszText
)
);
LocalFree
(
This
->
custom_okbutton
);
LocalFree
(
This
->
custom_okbutton
);
This
->
custom_okbutton
=
StrDupW
(
pszText
);
This
->
custom_okbutton
=
StrDupW
(
pszText
);
...
@@ -1159,7 +1159,7 @@ static HRESULT WINAPI IFileDialog2_fnSetOkButtonLabel(IFileDialog2 *iface, LPCWS
...
@@ -1159,7 +1159,7 @@ static HRESULT WINAPI IFileDialog2_fnSetOkButtonLabel(IFileDialog2 *iface, LPCWS
static
HRESULT
WINAPI
IFileDialog2_fnSetFileNameLabel
(
IFileDialog2
*
iface
,
LPCWSTR
pszLabel
)
static
HRESULT
WINAPI
IFileDialog2_fnSetFileNameLabel
(
IFileDialog2
*
iface
,
LPCWSTR
pszLabel
)
{
{
FileDialogImpl
*
This
=
impl_from_IFileDialog2
(
iface
);
FileDialogImpl
*
This
=
impl_from_IFileDialog2
(
iface
);
TRACE
(
"%p (%
p)
\n
"
,
This
,
pszLabel
);
TRACE
(
"%p (%
s)
\n
"
,
This
,
debugstr_w
(
pszLabel
)
);
LocalFree
(
This
->
custom_filenamelabel
);
LocalFree
(
This
->
custom_filenamelabel
);
This
->
custom_filenamelabel
=
StrDupW
(
pszLabel
);
This
->
custom_filenamelabel
=
StrDupW
(
pszLabel
);
...
@@ -1246,7 +1246,7 @@ static HRESULT WINAPI IFileDialog2_fnSetFilter(IFileDialog2 *iface, IShellItemFi
...
@@ -1246,7 +1246,7 @@ static HRESULT WINAPI IFileDialog2_fnSetFilter(IFileDialog2 *iface, IShellItemFi
static
HRESULT
WINAPI
IFileDialog2_fnSetCancelButtonLabel
(
IFileDialog2
*
iface
,
LPCWSTR
pszLabel
)
static
HRESULT
WINAPI
IFileDialog2_fnSetCancelButtonLabel
(
IFileDialog2
*
iface
,
LPCWSTR
pszLabel
)
{
{
FileDialogImpl
*
This
=
impl_from_IFileDialog2
(
iface
);
FileDialogImpl
*
This
=
impl_from_IFileDialog2
(
iface
);
TRACE
(
"%p (%
p)
\n
"
,
This
,
pszLabel
);
TRACE
(
"%p (%
s)
\n
"
,
This
,
debugstr_w
(
pszLabel
)
);
LocalFree
(
This
->
custom_cancelbutton
);
LocalFree
(
This
->
custom_cancelbutton
);
This
->
custom_cancelbutton
=
StrDupW
(
pszLabel
);
This
->
custom_cancelbutton
=
StrDupW
(
pszLabel
);
...
...
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