[Monodevelop-patches-list] r1126 - in trunk/MonoDevelop: . build src/AddIns/DisplayBindings/SourceEditor/Properties src/Main/Base/Gui/Workbench
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Mon Mar 8 13:02:59 EST 2004
Author: tberman
Date: 2004-03-08 13:02:59 -0500 (Mon, 08 Mar 2004)
New Revision: 1126
Modified:
trunk/MonoDevelop/ChangeLog
trunk/MonoDevelop/build/
trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Properties/TextEditorProperties.cs
trunk/MonoDevelop/src/Main/Base/Gui/Workbench/DefaultWorkbench.cs
Log:
ignoring build/bin now
fixing default for indentation
removing toupper windows deps
Modified: trunk/MonoDevelop/ChangeLog
===================================================================
--- trunk/MonoDevelop/ChangeLog 2004-03-06 16:17:38 UTC (rev 1125)
+++ trunk/MonoDevelop/ChangeLog 2004-03-08 18:02:59 UTC (rev 1126)
@@ -1,3 +1,8 @@
+2004-03-07 Todd Berman <tberman at sevenl.net>
+
+ * src/Main/Base/Gui/Workbench/DefaultWorkbench.cs:
+ Removing windows dependencies. (ToUpper)
+
2004-03-06 Martin Baulig <martin at ximian.com>
* configure.in: AC_SUBST(debugger_prefix).
Property changes on: trunk/MonoDevelop/build
___________________________________________________________________
Name: svn:ignore
- *.exe
*.dll
Makefile
Makefile.in
+ *.exe
*.dll
Makefile
Makefile.in
bin
Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Properties/TextEditorProperties.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Properties/TextEditorProperties.cs 2004-03-06 16:17:38 UTC (rev 1125)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Properties/TextEditorProperties.cs 2004-03-08 18:02:59 UTC (rev 1126)
@@ -59,7 +59,7 @@
public static IndentStyle IndentStyle {
get {
- return (IndentStyle)properties.GetProperty ("IndentStyle", IndentStyle.Smart);
+ return (IndentStyle)properties.GetProperty ("IndentStyle", IndentStyle.Auto);
}
set {
properties.SetProperty ("IndentStyle", value);
Modified: trunk/MonoDevelop/src/Main/Base/Gui/Workbench/DefaultWorkbench.cs
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Gui/Workbench/DefaultWorkbench.cs 2004-03-06 16:17:38 UTC (rev 1125)
+++ trunk/MonoDevelop/src/Main/Base/Gui/Workbench/DefaultWorkbench.cs 2004-03-08 18:02:59 UTC (rev 1126)
@@ -454,9 +454,8 @@
}
} else {
foreach (IViewContent content in ViewContentCollection) {
- // WINDOWS DEPENDENCY : ToUpper
if (content.ContentName != null &&
- content.ContentName.ToUpper() == e.FileName.ToUpper()) {
+ content.ContentName == e.FileName) {
content.WorkbenchWindow.CloseWindow(true, true, 0);
return;
}
@@ -474,9 +473,8 @@
}
} else {
foreach (IViewContent content in ViewContentCollection) {
- // WINDOWS DEPENDENCY : ToUpper
if (content.ContentName != null &&
- content.ContentName.ToUpper() == e.SourceFile.ToUpper()) {
+ content.ContentName == e.SourceFile) {
content.ContentName = e.TargetFile;
return;
}
More information about the Monodevelop-patches-list
mailing list