Author: lluis
Date: 2007-11-19 06:43:25 -0500 (Mon, 19 Nov 2007)
New Revision: 89925
Modified:
trunk/monodevelop/Extras/CSharpBinding/ChangeLog
trunk/monodevelop/Extras/CSharpBinding/Gui/CSharpTextEditorExtension.cs
Log:
* Gui/CSharpTextEditorExtension.cs: Fix invalid cast. Fixes bug
#342607.
Modified: trunk/monodevelop/Extras/CSharpBinding/ChangeLog
===================================================================
--- trunk/monodevelop/Extras/CSharpBinding/ChangeLog 2007-11-19 10:26:10 UTC
(rev 89924)
+++ trunk/monodevelop/Extras/CSharpBinding/ChangeLog 2007-11-19 11:43:25 UTC
(rev 89925)
@@ -1,3 +1,7 @@
+2007-11-19 Lluis Sanchez Gual <[EMAIL PROTECTED]>
+
+ * Gui/CSharpTextEditorExtension.cs: Fix invalid cast. Fixes bug #342607.
+
2007-11-16 Michael Hutchinson <[EMAIL PROTECTED]>
* Gui/CSharpTextEditorExtension.cs: Fix "Bug 342124 - Tab should indent,
Modified:
trunk/monodevelop/Extras/CSharpBinding/Gui/CSharpTextEditorExtension.cs
===================================================================
--- trunk/monodevelop/Extras/CSharpBinding/Gui/CSharpTextEditorExtension.cs
2007-11-19 10:26:10 UTC (rev 89924)
+++ trunk/monodevelop/Extras/CSharpBinding/Gui/CSharpTextEditorExtension.cs
2007-11-19 11:43:25 UTC (rev 89925)
@@ -912,7 +912,7 @@
bool CanOverrideIndexer (IClass cls, IIndexer idx)
{
- foreach (IProperty i in cls.Indexer) {
+ foreach (IIndexer i in cls.Indexer) {
if (idx.Name == i.Name && IsEqual
(idx.Parameters, i.Parameters))
return false;
}
_______________________________________________
Mono-patches maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches