From 7a3087b6a38e628d9450e7266b2a11d2733ab428 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Srbeck=C3=BD?= Date: Sat, 4 Feb 2006 14:59:45 +0000 Subject: [PATCH] Fixed SD2-672: Applications using DynamicProxy cannot be debugged git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@1065 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61 --- .../Project/Src/Debugger/Internal/ManagedCallback.cs | 2 +- .../Project/Src/Debugger/Internal/ManagedCallbackProxy.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallback.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallback.cs index 60569e5fe0..b342be406e 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallback.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallback.cs @@ -251,7 +251,7 @@ namespace Debugger ExitCallback_Paused(PausedReason.DebuggerError); } - public void UpdateModuleSymbols(ICorDebugAppDomain pAppDomain, ICorDebugModule pModule, Debugger.Interop.CorDebug.IStream pSymbolStream) + public void UpdateModuleSymbols(ICorDebugAppDomain pAppDomain, ICorDebugModule pModule, IStream pSymbolStream) { EnterCallback("UpdateModuleSymbols", pAppDomain); diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackProxy.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackProxy.cs index b82d1c6059..4ddb270bc4 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackProxy.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackProxy.cs @@ -316,7 +316,7 @@ namespace Debugger realCallback.UpdateModuleSymbols( MTA2STA.MarshalIntPtrTo(pAppDomain), MTA2STA.MarshalIntPtrTo(pModule), - MTA2STA.MarshalIntPtrTo(pSymbolStream) + MTA2STA.MarshalIntPtrTo(pSymbolStream) ); }); }