[Monodevelop-patches-list] r2502 - in trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn: . Gui/Pads
Lluis Sanchez <lluis@ximian.com>
lluis at mono-cvs.ximian.com
Mon May 2 20:26:49 EDT 2005
Author: lluis
Date: 2005-05-02 20:26:49 -0400 (Mon, 02 May 2005)
New Revision: 2502
Modified:
trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog
trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/Pads/LocalsPad.cs
trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/Pads/StackTracePad.cs
trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/Pads/ThreadPad.cs
trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Makefile.am
Log:
2005-05-03 Lluis Sanchez Gual <lluis at novell.com>
* Gui/Pads/LocalsPad.cs:
* Gui/Pads/StackTracePad.cs:
* Gui/Pads/ThreadPad.cs: Removed BringToFront from IPadContent.
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog 2005-05-03 00:26:20 UTC (rev 2501)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog 2005-05-03 00:26:49 UTC (rev 2502)
@@ -1,3 +1,9 @@
+2005-05-03 Lluis Sanchez Gual <lluis at novell.com>
+
+ * Gui/Pads/LocalsPad.cs:
+ * Gui/Pads/StackTracePad.cs:
+ * Gui/Pads/ThreadPad.cs: Removed BringToFront from IPadContent.
+
2005-04-30 Lluis Sanchez Gual <lluis at novell.com>
* DebuggingService.cs: Made Debugging property public and changed the
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/Pads/LocalsPad.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/Pads/LocalsPad.cs 2005-05-03 00:26:20 UTC (rev 2501)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/Pads/LocalsPad.cs 2005-05-03 00:26:49 UTC (rev 2502)
@@ -795,25 +795,21 @@
UpdateDisplay ();
}
- public void BringToFront ()
+ protected virtual void OnTitleChanged(EventArgs e)
{
+ if (TitleChanged != null) {
+ TitleChanged(this, e);
+ }
}
+ protected virtual void OnIconChanged(EventArgs e)
+ {
+ if (IconChanged != null) {
+ IconChanged(this, e);
+ }
+ }
+ public event EventHandler TitleChanged;
+ public event EventHandler IconChanged;
- protected virtual void OnTitleChanged(EventArgs e)
- {
- if (TitleChanged != null) {
- TitleChanged(this, e);
- }
- }
- protected virtual void OnIconChanged(EventArgs e)
- {
- if (IconChanged != null) {
- IconChanged(this, e);
- }
- }
- public event EventHandler TitleChanged;
- public event EventHandler IconChanged;
-
}
}
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/Pads/StackTracePad.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/Pads/StackTracePad.cs 2005-05-03 00:26:20 UTC (rev 2501)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/Pads/StackTracePad.cs 2005-05-03 00:26:49 UTC (rev 2502)
@@ -134,24 +134,20 @@
UpdateDisplay ();
}
- public void BringToFront ()
+ protected virtual void OnTitleChanged(EventArgs e)
{
+ if (TitleChanged != null) {
+ TitleChanged(this, e);
+ }
}
-
- protected virtual void OnTitleChanged(EventArgs e)
- {
- if (TitleChanged != null) {
- TitleChanged(this, e);
- }
- }
- protected virtual void OnIconChanged(EventArgs e)
- {
- if (IconChanged != null) {
- IconChanged(this, e);
- }
- }
- public event EventHandler TitleChanged;
- public event EventHandler IconChanged;
+ protected virtual void OnIconChanged(EventArgs e)
+ {
+ if (IconChanged != null) {
+ IconChanged(this, e);
+ }
+ }
+ public event EventHandler TitleChanged;
+ public event EventHandler IconChanged;
}
}
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/Pads/ThreadPad.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/Pads/ThreadPad.cs 2005-05-03 00:26:20 UTC (rev 2501)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/Pads/ThreadPad.cs 2005-05-03 00:26:49 UTC (rev 2502)
@@ -160,10 +160,6 @@
UpdateDisplay ();
}
- public void BringToFront ()
- {
- }
-
protected void OnThreadEvent (object o, EventArgs args)
{
UpdateDisplay ();
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Makefile.am 2005-05-03 00:26:20 UTC (rev 2501)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Makefile.am 2005-05-03 00:26:49 UTC (rev 2502)
@@ -40,7 +40,7 @@
$(ASSEMBLY): $(build_sources)
mkdir -p $(ADDIN_BUILD)
- $(CSC) -debug -define:NET_2_0 -out:$@ -target:library \
+ $(CSC) -debug -out:$@ -target:library \
$(build_sources) $(DLLS)
assemblydir = $(libdir)/monodevelop/AddIns/DebuggerAddIn
More information about the Monodevelop-patches-list
mailing list