Skip to content

Commit b338f06

Browse files
committed
Reverted one refactoring on the TypeInfos making things even more confusing.
1 parent b698e93 commit b338f06

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Rubberduck.VBEEditor/ComManagement/TypeLibs/TypeInfos.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ public object StdModExecute(string name, object[] args = null)
654654

655655
try
656656
{
657-
return DispatchHelper.Invoke(staticModule, func.FuncDesc.memid, DispatchHelper.InvokeKind.DISPATCH_METHOD, args);
657+
return IDispatchHelper.Invoke(staticModule, func.FuncDesc.memid, IDispatchHelper.InvokeKind.DISPATCH_METHOD, args);
658658
}
659659
finally
660660
{

Rubberduck.VBEEditor/ComManagement/TypeLibs/TypeLibsSupport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ public static class ComHelper
308308
public static bool HRESULT_FAILED(int hr) => hr < 0;
309309
}
310310

311-
public static class DispatchHelper
311+
public static class IDispatchHelper
312312
{
313313
static Guid GUID_NULL = new Guid();
314314

0 commit comments

Comments
 (0)