Nikolay Sivov : opcservices: Fix a typo.
Module: wine Branch: master Commit: ce11b1bf62a80d55a5a487a4f2e399c2f6d36d8c URL: https://source.winehq.org/git/wine.git/?a=commit;h=ce11b1bf62a80d55a5a487a4f... Author: Nikolay Sivov <nsivov(a)codeweavers.com> Date: Fri Sep 7 13:56:14 2018 +0300 opcservices: Fix a typo. Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/opcservices/package.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/opcservices/package.c b/dlls/opcservices/package.c index 370b42e..2c2ef7c 100644 --- a/dlls/opcservices/package.c +++ b/dlls/opcservices/package.c @@ -352,7 +352,7 @@ static HRESULT WINAPI opc_part_set_PartExists(IOpcPartSet *iface, IOpcPartUri *n return E_NOTIMPL; } -static HRESULT WINAPI opc_part_set_GtEnumerator(IOpcPartSet *iface, IOpcPartEnumerator **enumerator) +static HRESULT WINAPI opc_part_set_GetEnumerator(IOpcPartSet *iface, IOpcPartEnumerator **enumerator) { FIXME("iface %p, enumerator %p stub!\n", iface, enumerator); @@ -368,7 +368,7 @@ static const IOpcPartSetVtbl opc_part_set_vtbl = opc_part_set_CreatePart, opc_part_set_DeletePart, opc_part_set_PartExists, - opc_part_set_GtEnumerator, + opc_part_set_GetEnumerator, }; static HRESULT WINAPI opc_relationship_QueryInterface(IOpcRelationship *iface, REFIID iid, void **out)
participants (1)
-
Alexandre Julliard