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
98fd1c56
Commit
98fd1c56
authored
Feb 10, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Feb 10, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Return the correct error code from IConnectionPointContainer::FindConnectionPoint.
parent
f4acfe9a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
olefont.c
dlls/oleaut32/olefont.c
+2
-2
olepicture.c
dlls/oleaut32/olepicture.c
+2
-2
events.c
dlls/shdocvw/events.c
+1
-1
No files found.
dlls/oleaut32/olefont.c
View file @
98fd1c56
...
...
@@ -1901,8 +1901,8 @@ static HRESULT WINAPI OLEFontImpl_FindConnectionPoint(
&
IID_IConnectionPoint
,
(
LPVOID
)
ppCp
);
}
else
{
FIXME
(
"
Tried to find connection point on
%s
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
FIXME
(
"
no connection point for
%s
\n
"
,
debugstr_guid
(
riid
));
return
CONNECT_E_NOCONNECTION
;
}
}
...
...
dlls/oleaut32/olepicture.c
View file @
98fd1c56
...
...
@@ -869,8 +869,8 @@ static HRESULT WINAPI OLEPictureImpl_FindConnectionPoint(
*
ppCP
=
NULL
;
if
(
IsEqualGUID
(
riid
,
&
IID_IPropertyNotifySink
))
return
IConnectionPoint_QueryInterface
(
This
->
pCP
,
&
IID_IConnectionPoint
,(
LPVOID
)
ppCP
);
FIXME
(
"
tried to find connection point on %s?
\n
"
,
debugstr_guid
(
riid
));
return
0x80040200
;
FIXME
(
"
no connection point for %s
\n
"
,
debugstr_guid
(
riid
));
return
CONNECT_E_NOCONNECTION
;
}
/************************************************************************
* IPersistStream
...
...
dlls/shdocvw/events.c
View file @
98fd1c56
...
...
@@ -102,7 +102,7 @@ static HRESULT WINAPI ConnectionPointContainer_FindConnectionPoint(IConnectionPo
}
WARN
(
"Unsupported IID %s
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
return
CONNECT_E_NOCONNECTION
;
}
#undef CONPTCONT_THIS
...
...
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