[Monodevelop-patches-list] r2077 - trunk/MonoDevelop/Core/src/AddIns/BackendBindings/VBNetBinding

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


Author: lluis
Date: 2004-12-13 16:22:13 -0500 (Mon, 13 Dec 2004)
New Revision: 2077

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

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



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

Modified: trunk/MonoDevelop/Core/src/AddIns/BackendBindings/VBNetBinding/VBBindingCompilerServices.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/BackendBindings/VBNetBinding/VBBindingCompilerServices.cs	2004-12-13 21:21:56 UTC (rev 2076)
+++ trunk/MonoDevelop/Core/src/AddIns/BackendBindings/VBNetBinding/VBBindingCompilerServices.cs	2004-12-13 21:22:13 UTC (rev 2077)
@@ -700,17 +700,17 @@
 
 		bool done ()
 		{
-			((SdStatusBar)((IStatusBarService)ServiceManager.GetService (typeof (IStatusBarService))).ProgressMonitor).Done ();
+			((SdStatusBar)Runtime.Gui.StatusBar.Control).Done ();
 			return false;
 		}
 
 		bool pulse () 
 		{
-			((SdStatusBar)((IStatusBarService)ServiceManager.GetService (typeof (IStatusBarService))).ProgressMonitor).Pulse ();
+			((SdStatusBar)Runtime.Gui.StatusBar.Control).Pulse ();
 			while (Gtk.Application.EventsPending ())
 				Gtk.Application.RunIteration ();
 			return false;
 		}
 		
 	}
-}
\ No newline at end of file
+}




More information about the Monodevelop-patches-list mailing list