[Monodevelop-patches-list] r2075 - trunk/MonoDevelop/Core/src/AddIns/BackendBindings/NemerleBinding

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Mon Dec 13 16:21:40 EST 2004


Author: lluis
Date: 2004-12-13 16:21:39 -0500 (Mon, 13 Dec 2004)
New Revision: 2075

Modified:
   trunk/MonoDevelop/Core/src/AddIns/BackendBindings/NemerleBinding/ChangeLog
   trunk/MonoDevelop/Core/src/AddIns/BackendBindings/NemerleBinding/NemerleBindingCompilerServices.cs
Log:
2004-12-13  Lluis Sanchez Gual  <lluis at novell.com>

	* NemerleBindingCompilerServices.cs: StatusBarService.ProgressMonitor is
	not a StatusBar widget any more.



Modified: trunk/MonoDevelop/Core/src/AddIns/BackendBindings/NemerleBinding/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/BackendBindings/NemerleBinding/ChangeLog	2004-12-13 21:21:25 UTC (rev 2074)
+++ trunk/MonoDevelop/Core/src/AddIns/BackendBindings/NemerleBinding/ChangeLog	2004-12-13 21:21:39 UTC (rev 2075)
@@ -1,3 +1,8 @@
+2004-12-13  Lluis Sanchez Gual  <lluis at novell.com>
+
+	* NemerleBindingCompilerServices.cs: StatusBarService.ProgressMonitor is
+	not a StatusBar widget any more.
+
 2004-12-07  Alexandre Gomes <alexmipego at hotmail.com>
 
 	* NemerleLanguageBinding.cs: Added CommentTag to be used by (Un)CommentCode

Modified: trunk/MonoDevelop/Core/src/AddIns/BackendBindings/NemerleBinding/NemerleBindingCompilerServices.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/BackendBindings/NemerleBinding/NemerleBindingCompilerServices.cs	2004-12-13 21:21:25 UTC (rev 2074)
+++ trunk/MonoDevelop/Core/src/AddIns/BackendBindings/NemerleBinding/NemerleBindingCompilerServices.cs	2004-12-13 21:21:39 UTC (rev 2075)
@@ -187,7 +187,7 @@
 			while ((!p.HasExited) && p.HasNoOut())
 //			while ((!p.HasExited) && (p.StandardOutput.Peek() == -1)) // this could eliminate VProcess outgrowth
 			{
-				((SdStatusBar)sbs.ProgressMonitor).Pulse();
+				((SdStatusBar)sbs.Control).Pulse();
 				while (Gtk.Application.EventsPending ())
 					Gtk.Application.RunIteration ();
 				System.Threading.Thread.Sleep (100);
@@ -196,12 +196,12 @@
 			CompilerResultsParser cr = new CompilerResultsParser();	
 			while ((l = p.StandardOutput.ReadLine()) != null)
 			{
-				((SdStatusBar)sbs.ProgressMonitor).Pulse();
+				((SdStatusBar)sbs.Control).Pulse();
 				while (Gtk.Application.EventsPending ())
 					Gtk.Application.RunIteration ();
 				cr.Parse(l);
 			}
-			((SdStatusBar)sbs.ProgressMonitor).Done();
+			((SdStatusBar)sbs.Control).Done();
 			
 			if  ((l = p.StandardError.ReadLine()) != null)
 			{




More information about the Monodevelop-patches-list mailing list