[Monodevelop-patches-list] r1214 - in trunk/MonoDevelop/src/Main/Base: . Commands

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Sun Mar 21 02:30:58 EST 2004


Author: tberman
Date: 2004-03-21 02:30:58 -0500 (Sun, 21 Mar 2004)
New Revision: 1214

Modified:
   trunk/MonoDevelop/src/Main/Base/ChangeLog
   trunk/MonoDevelop/src/Main/Base/Commands/FileCommands.cs
Log:
fix bug, string issues.


Modified: trunk/MonoDevelop/src/Main/Base/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/Main/Base/ChangeLog	2004-03-21 06:22:28 UTC (rev 1213)
+++ trunk/MonoDevelop/src/Main/Base/ChangeLog	2004-03-21 07:30:58 UTC (rev 1214)
@@ -1,4 +1,8 @@
 2004-04-21  Todd Berman  <tberman at sevenl.net>
 
+	* Commands/FileCommands: fix bug #55869.
+
+2004-04-21  Todd Berman  <tberman at sevenl.net>
+
 	* Commands/VBConverter/ConvertProject.cs:
 	* Commands/VBConverter/ConvertBuffer.cs: Changed to use new parser

Modified: trunk/MonoDevelop/src/Main/Base/Commands/FileCommands.cs
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Commands/FileCommands.cs	2004-03-21 06:22:28 UTC (rev 1213)
+++ trunk/MonoDevelop/src/Main/Base/Commands/FileCommands.cs	2004-03-21 07:30:58 UTC (rev 1214)
@@ -101,7 +101,7 @@
 			
 			if (window != null && window.ViewContent.ContentName != null && !window.ViewContent.IsViewOnly) {
 				IMessageService messageService =(IMessageService)ServiceManager.Services.GetService(typeof(IMessageService));
-				if (messageService.AskQuestion("${res:MonoDevelop.Commands.ReloadFile.ReloadFileQuestion}")) {
+				if (messageService.AskQuestion("${res:ICSharpCode.SharpDevelop.Commands.ReloadFile.ReloadFileQuestion}")) {
 					IXmlConvertable memento = null;
 					if (window.ViewContent is IMementoCapable) {
 						memento = ((IMementoCapable)window.ViewContent).CreateMemento();




More information about the Monodevelop-patches-list mailing list