[Monodevelop-patches-list] r1748 - trunk/MonoDevelop/src/AddIns/DebuggerAddIn
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Sat Jun 12 14:44:55 EDT 2004
Author: martin
Date: 2004-06-12 14:44:55 -0400 (Sat, 12 Jun 2004)
New Revision: 1748
Modified:
trunk/MonoDevelop/src/AddIns/DebuggerAddIn/ChangeLog
trunk/MonoDevelop/src/AddIns/DebuggerAddIn/DebuggingService.cs
trunk/MonoDevelop/src/AddIns/DebuggerAddIn/Makefile.am
Log:
2004-06-12 Martin Baulig <martin at ximian.com>
* Makefile.am: enable the debugger again.
* DebuggingService.cs: Make it work wit the latest debugger from CVS.
Modified: trunk/MonoDevelop/src/AddIns/DebuggerAddIn/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/AddIns/DebuggerAddIn/ChangeLog 2004-06-12 18:44:34 UTC (rev 1747)
+++ trunk/MonoDevelop/src/AddIns/DebuggerAddIn/ChangeLog 2004-06-12 18:44:55 UTC (rev 1748)
@@ -1,3 +1,8 @@
+2004-06-12 Martin Baulig <martin at ximian.com>
+
+ * Makefile.am: enable the debugger again.
+ * DebuggingService.cs: Make it work wit the latest debugger from CVS.
+
2004-04-29 Todd Berman <tberman at sevenl.net>
* Makefile.am: dont build debugger for now. will add info in configure
Modified: trunk/MonoDevelop/src/AddIns/DebuggerAddIn/DebuggingService.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DebuggerAddIn/DebuggingService.cs 2004-06-12 18:44:34 UTC (rev 1747)
+++ trunk/MonoDevelop/src/AddIns/DebuggerAddIn/DebuggingService.cs 2004-06-12 18:44:55 UTC (rev 1748)
@@ -67,7 +67,7 @@
private Breakpoint CreateBreakpoint (string name)
{
- SimpleBreakpoint point = new SimpleBreakpoint (name, null);
+ SimpleBreakpoint point = new SimpleBreakpoint (name);
point.BreakpointHitEvent += new BreakpointEventHandler (OnBreakpointHit);
return point;
}
@@ -157,11 +157,11 @@
{
insert_breakpoints ();
- proc.Continue (false);
-
if (StartedEvent != null)
StartedEvent (this, new EventArgs ());
+ ChangeState ();
+
return false;
}
Modified: trunk/MonoDevelop/src/AddIns/DebuggerAddIn/Makefile.am
===================================================================
--- trunk/MonoDevelop/src/AddIns/DebuggerAddIn/Makefile.am 2004-06-12 18:44:34 UTC (rev 1747)
+++ trunk/MonoDevelop/src/AddIns/DebuggerAddIn/Makefile.am 2004-06-12 18:44:55 UTC (rev 1748)
@@ -18,8 +18,7 @@
if ENABLE_DEBUGGER
-#all: $(ASSEMBLY)
-all:
+all: $(ASSEMBLY)
build_sources = $(addprefix $(srcdir)/, $(FILES))
More information about the Monodevelop-patches-list
mailing list