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
51144d6a
Commit
51144d6a
authored
Jun 30, 2015
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jun 30, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
explorer: Print the debug string and not the pointer to it.
parent
c50f6a30
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
desktop.c
programs/explorer/desktop.c
+2
-2
No files found.
programs/explorer/desktop.c
View file @
51144d6a
...
...
@@ -1171,7 +1171,7 @@ static HRESULT WINAPI shellwindows_Revoke(IShellWindows *iface, LONG cookie)
static
HRESULT
WINAPI
shellwindows_OnNavigate
(
IShellWindows
*
iface
,
LONG
cookie
,
VARIANT
*
loc
)
{
FIXME
(
"0x%x %
p
\n
"
,
cookie
,
debugstr_variant
(
loc
));
FIXME
(
"0x%x %
s
\n
"
,
cookie
,
debugstr_variant
(
loc
));
return
E_NOTIMPL
;
}
...
...
@@ -1184,7 +1184,7 @@ static HRESULT WINAPI shellwindows_OnActivated(IShellWindows *iface, LONG cookie
static
HRESULT
WINAPI
shellwindows_FindWindowSW
(
IShellWindows
*
iface
,
VARIANT
*
loc
,
VARIANT
*
root
,
int
class
,
LONG
*
hwnd
,
int
options
,
IDispatch
**
disp
)
{
TRACE
(
"%s %
p
0x%x %p 0x%x %p
\n
"
,
debugstr_variant
(
loc
),
debugstr_variant
(
root
),
TRACE
(
"%s %
s
0x%x %p 0x%x %p
\n
"
,
debugstr_variant
(
loc
),
debugstr_variant
(
root
),
class
,
hwnd
,
options
,
disp
);
if
(
class
!=
SWC_DESKTOP
)
...
...
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