[Monodevelop-patches-list] r1825 - trunk/MonoDevelop/src/AddIns/DebuggerAddIn
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Fri Jun 25 16:19:20 EDT 2004
Author: tberman
Date: 2004-06-25 16:19:20 -0400 (Fri, 25 Jun 2004)
New Revision: 1825
Modified:
trunk/MonoDevelop/src/AddIns/DebuggerAddIn/ChangeLog
trunk/MonoDevelop/src/AddIns/DebuggerAddIn/DebuggingService.cs
Log:
sync with cvs debugger...
Modified: trunk/MonoDevelop/src/AddIns/DebuggerAddIn/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/AddIns/DebuggerAddIn/ChangeLog 2004-06-25 03:20:27 UTC (rev 1824)
+++ trunk/MonoDevelop/src/AddIns/DebuggerAddIn/ChangeLog 2004-06-25 20:19:20 UTC (rev 1825)
@@ -1,3 +1,7 @@
+2004-06-25 Todd Berman <tberman at off.net>
+
+ * DebuggingService.cs: sync with cvs debugger.
+
2004-06-18 Todd Berman <tberman at off.net>
* Makefile.am: use pkg-config properly.
Modified: trunk/MonoDevelop/src/AddIns/DebuggerAddIn/DebuggingService.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DebuggerAddIn/DebuggingService.cs 2004-06-25 03:20:27 UTC (rev 1824)
+++ trunk/MonoDevelop/src/AddIns/DebuggerAddIn/DebuggingService.cs 2004-06-25 20:19:20 UTC (rev 1825)
@@ -256,7 +256,7 @@
public string[] Backtrace {
get {
Backtrace trace = proc.GetBacktrace ();
- string[] result = new string [trace.Length];
+ string[] result = new string [trace.Frames.Length];
int i = 0;
foreach (StackFrame frame in trace.Frames)
result [i++] = frame.SourceAddress.Name;
More information about the Monodevelop-patches-list
mailing list