mail-archives/monodevelop-patches-list/2004-March/000731.html

143 строки
6.3 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE> [Monodevelop-patches-list] r1126 - in trunk/MonoDevelop: . build src/AddIns/DisplayBindings/SourceEditor/Properties src/Main/Base/Gui/Workbench
</TITLE>
<LINK REL="Index" HREF="index.html" >
<LINK REL="made" HREF="mailto:monodevelop-patches-list%40lists.ximian.com?Subject=%5BMonodevelop-patches-list%5D%20r1126%20-%20in%20trunk/MonoDevelop%3A%20.%20build%20src/AddIns/DisplayBindings/SourceEditor/Properties%20src/Main/Base/Gui/Workbench&In-Reply-To=">
<META NAME="robots" CONTENT="index,nofollow">
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
<LINK REL="Previous" HREF="000730.html">
<LINK REL="Next" HREF="000732.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Monodevelop-patches-list] r1126 - in trunk/MonoDevelop: . build src/AddIns/DisplayBindings/SourceEditor/Properties src/Main/Base/Gui/Workbench</H1>
<B>commit-watcher at mono-cvs.ximian.com</B>
<A HREF="mailto:monodevelop-patches-list%40lists.ximian.com?Subject=%5BMonodevelop-patches-list%5D%20r1126%20-%20in%20trunk/MonoDevelop%3A%20.%20build%20src/AddIns/DisplayBindings/SourceEditor/Properties%20src/Main/Base/Gui/Workbench&In-Reply-To="
TITLE="[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
</A><BR>
<I>Mon Mar 8 13:02:59 EST 2004</I>
<P><UL>
<LI>Previous message: <A HREF="000730.html">[Monodevelop-patches-list] r1125 - in trunk/MonoDevelop: . build/AddIns src/AddIns/DisplayBindings/SourceEditor/Gui/Pads src/Main/Base src/Main/Base/Commands src/Main/Base/Gui/Workbench src/Main/Base/Services
</A></li>
<LI>Next message: <A HREF="000732.html">[Monodevelop-patches-list] r1127 - in trunk/MonoDevelop: . build/data/templates/project/CSharp src/Main/Base src/Main/Base/Gui/Dialogs
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#731">[ date ]</a>
<a href="thread.html#731">[ thread ]</a>
<a href="subject.html#731">[ subject ]</a>
<a href="author.html#731">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>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 &lt;<A HREF="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">tberman at sevenl.net</A>&gt;
+
+ * src/Main/Base/Gui/Workbench/DefaultWorkbench.cs:
+ Removing windows dependencies. (ToUpper)
+
2004-03-06 Martin Baulig &lt;<A HREF="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">martin at ximian.com</A>&gt;
* 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 (&quot;IndentStyle&quot;, IndentStyle.Smart);
+ return (IndentStyle)properties.GetProperty (&quot;IndentStyle&quot;, IndentStyle.Auto);
}
set {
properties.SetProperty (&quot;IndentStyle&quot;, 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 &amp;&amp;
- 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 &amp;&amp;
- content.ContentName.ToUpper() == e.SourceFile.ToUpper()) {
+ content.ContentName == e.SourceFile) {
content.ContentName = e.TargetFile;
return;
}
</PRE>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI>Previous message: <A HREF="000730.html">[Monodevelop-patches-list] r1125 - in trunk/MonoDevelop: . build/AddIns src/AddIns/DisplayBindings/SourceEditor/Gui/Pads src/Main/Base src/Main/Base/Commands src/Main/Base/Gui/Workbench src/Main/Base/Services
</A></li>
<LI>Next message: <A HREF="000732.html">[Monodevelop-patches-list] r1127 - in trunk/MonoDevelop: . build/data/templates/project/CSharp src/Main/Base src/Main/Base/Gui/Dialogs
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#731">[ date ]</a>
<a href="thread.html#731">[ thread ]</a>
<a href="subject.html#731">[ subject ]</a>
<a href="author.html#731">[ author ]</a>
</LI>
</UL>
<hr>
<a href="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">More information about the Monodevelop-patches-list
mailing list</a><br>
</body></html>