[Monodevelop-patches-list] r1089 - in trunk/MonoDevelop: . src/Main/Base/Services
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Wed Mar 3 14:52:44 EST 2004
Author: mkestner
Date: 2004-03-03 14:52:44 -0500 (Wed, 03 Mar 2004)
New Revision: 1089
Modified:
trunk/MonoDevelop/ChangeLog
trunk/MonoDevelop/src/Main/Base/Services/DebuggingService.cs
Log:
2004-03-04 Mike Kestner <mkestner at ximian.com>
* Main/Base/Services/DebuggingService.cs (Run): ignore if running
Modified: trunk/MonoDevelop/ChangeLog
===================================================================
--- trunk/MonoDevelop/ChangeLog 2004-03-03 19:44:57 UTC (rev 1088)
+++ trunk/MonoDevelop/ChangeLog 2004-03-03 19:52:44 UTC (rev 1089)
@@ -1,3 +1,7 @@
+2004-03-04 Mike Kestner <mkestner at ximian.com>
+
+ * Main/Base/Services/DebuggingService.cs (Run): ignore if running
+
2004-03-03 John BouAntoun <jba-mono at optusnet.com.au>
* src/Main/Base/Commands/ProjectOptionsCommands.cs : enabled all the projections command actions
* src/Main/Base/Gui/Dialogs/ProjectOptionsDialog.cs : added code to display the configuration options nodes
Modified: trunk/MonoDevelop/src/Main/Base/Services/DebuggingService.cs
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Services/DebuggingService.cs 2004-03-03 19:44:57 UTC (rev 1088)
+++ trunk/MonoDevelop/src/Main/Base/Services/DebuggingService.cs 2004-03-03 19:52:44 UTC (rev 1089)
@@ -91,6 +91,9 @@
public void Run (string[] argv)
{
+ if (Debugging)
+ return;
+
backend = new DebuggerBackend ();
foreach (string key in breakpoints.Keys) {
Breakpoint point = CreateBreakpoint (key);
More information about the Monodevelop-patches-list
mailing list