[Monodevelop-patches-list] r804 - trunk/MonoDevelop/src/Main/Base/Services/File
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Sat Feb 7 13:03:04 EST 2004
Author: tberman
Date: 2004-02-07 13:03:04 -0500 (Sat, 07 Feb 2004)
New Revision: 804
Modified:
trunk/MonoDevelop/src/Main/Base/Services/File/DefaultFileService.cs
Log:
linux doesnt have this case insensitivity issue *BAD* windows
Modified: trunk/MonoDevelop/src/Main/Base/Services/File/DefaultFileService.cs
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Services/File/DefaultFileService.cs 2004-02-06 07:28:46 UTC (rev 803)
+++ trunk/MonoDevelop/src/Main/Base/Services/File/DefaultFileService.cs 2004-02-07 18:03:04 UTC (rev 804)
@@ -88,7 +88,7 @@
foreach (IViewContent content in WorkbenchSingleton.Workbench.ViewContentCollection) {
// WINDOWS DEPENDENCY : ToUpper()
if (content.ContentName != null &&
- content.ContentName.ToUpper() == fileName.ToUpper()) {
+ content.ContentName == fileName) {
content.WorkbenchWindow.SelectWindow();
return;
}
More information about the Monodevelop-patches-list
mailing list