Browse Source

Bugfix: Exception history fixed

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.0@1289 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
David Srbecký 19 years ago
parent
commit
d3fc9d2c9d
  1. 1
      src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/WindowsDebugger.cs
  2. 1
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Thread.cs

1
src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/WindowsDebugger.cs

@ -342,6 +342,7 @@ namespace ICSharpCode.SharpDevelop.Services @@ -342,6 +342,7 @@ namespace ICSharpCode.SharpDevelop.Services
return;
case ExceptionForm.Result.Ignore:
debugger.SelectedThread.InterceptCurrentException();
e.ResumeDebuggingAfterEvent(); // HACK: Start interception
break;
}
}

1
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Thread.cs

@ -136,7 +136,6 @@ namespace Debugger @@ -136,7 +136,6 @@ namespace Debugger
if (corThread.Is<ICorDebugThread2>()) { // Is the debuggee .NET 2.0?
corThread.CastTo<ICorDebugThread2>().InterceptCurrentException(LastFunction.CorILFrame.CastTo<ICorDebugFrame>());
}
process.Continue();
}
internal Stepper GetStepper(ICorDebugStepper corStepper)

Loading…
Cancel
Save