mail-archives/monodevelop-patches-list/2004-March/000694.html

99 строки
4.3 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE> [Monodevelop-patches-list] r1089 - in trunk/MonoDevelop: . src/Main/Base/Services
</TITLE>
<LINK REL="Index" HREF="index.html" >
<LINK REL="made" HREF="mailto:monodevelop-patches-list%40lists.ximian.com?Subject=%5BMonodevelop-patches-list%5D%20r1089%20-%20in%20trunk/MonoDevelop%3A%20.%20src/Main/Base/Services&In-Reply-To=">
<META NAME="robots" CONTENT="index,nofollow">
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
<LINK REL="Previous" HREF="000693.html">
<LINK REL="Next" HREF="000695.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Monodevelop-patches-list] r1089 - in trunk/MonoDevelop: . src/Main/Base/Services</H1>
<B>commit-watcher at mono-cvs.ximian.com</B>
<A HREF="mailto:monodevelop-patches-list%40lists.ximian.com?Subject=%5BMonodevelop-patches-list%5D%20r1089%20-%20in%20trunk/MonoDevelop%3A%20.%20src/Main/Base/Services&In-Reply-To="
TITLE="[Monodevelop-patches-list] r1089 - in trunk/MonoDevelop: . src/Main/Base/Services">commit-watcher at mono-cvs.ximian.com
</A><BR>
<I>Wed Mar 3 14:52:44 EST 2004</I>
<P><UL>
<LI>Previous message: <A HREF="000693.html">[Monodevelop-patches-list] r1088 - trunk/MonoDevelop/src/Main/Base/Commands
</A></li>
<LI>Next message: <A HREF="000695.html">[Monodevelop-patches-list] r1090 - in trunk/MonoDevelop: . src/Main/Base/Services
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#694">[ date ]</a>
<a href="thread.html#694">[ thread ]</a>
<a href="subject.html#694">[ subject ]</a>
<a href="author.html#694">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>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 &lt;<A HREF="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">mkestner at ximian.com</A>&gt;
* 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 &lt;<A HREF="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">mkestner at ximian.com</A>&gt;
+
+ * Main/Base/Services/DebuggingService.cs (Run): ignore if running
+
2004-03-03 John BouAntoun &lt;<A HREF="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">jba-mono at optusnet.com.au</A>&gt;
* 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);
</PRE>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI>Previous message: <A HREF="000693.html">[Monodevelop-patches-list] r1088 - trunk/MonoDevelop/src/Main/Base/Commands
</A></li>
<LI>Next message: <A HREF="000695.html">[Monodevelop-patches-list] r1090 - in trunk/MonoDevelop: . src/Main/Base/Services
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#694">[ date ]</a>
<a href="thread.html#694">[ thread ]</a>
<a href="subject.html#694">[ subject ]</a>
<a href="author.html#694">[ author ]</a>
</LI>
</UL>
<hr>
<a href="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">More information about the Monodevelop-patches-list
mailing list</a><br>
</body></html>