[Monodevelop-devel] Patch: Fixes to compile with csc

Lluis Sanchez Gual lluis at novell.com
Thu Dec 18 10:35:49 EST 2008


Fixed. Thanks!

El dc 17 de 12 de 2008 a les 17:24 -0600, en/na Jonathan Pobst va
escriure:
> The attached patch fixes some errors received when compiling MD with 
> csc.  This is bug #421838 filed against mcs.
> 
> Jonathan
> fitxer adjunt document de text pla (mdpatch1.patch)
> Index: addins/Mono.Texteditor/Mono.TextEditor/DocumentLocation.cs
> ===================================================================
> --- addins/Mono.Texteditor/Mono.TextEditor/DocumentLocation.cs	(revision 121639)
> +++ addins/Mono.Texteditor/Mono.TextEditor/DocumentLocation.cs	(working copy)
> @@ -42,7 +42,7 @@
>  			}
>  		}
>  		
> -		public DocumentLocation (int line, int column)
> +		public DocumentLocation (int line, int column) : this ()
>  		{
>  			this.Line = line;
>  			this.Column = column;
> Index: core/MonoDevelop.Projects/MonoDevelop.Projects.Dom/DomLocation.cs
> ===================================================================
> --- core/MonoDevelop.Projects/MonoDevelop.Projects.Dom/DomLocation.cs	(revision 121639)
> +++ core/MonoDevelop.Projects/MonoDevelop.Projects.Dom/DomLocation.cs	(working copy)
> @@ -55,7 +55,7 @@
>  			}
>  		}
>  		
> -		public DomLocation (int line, int column)
> +		public DomLocation (int line, int column) : this ()
>  		{
>  			this.Line   = line;
>  			this.Column = column;
> Index: core/MonoDevelop.Projects/MonoDevelop.Projects.Dom/DomRegion.cs
> ===================================================================
> --- core/MonoDevelop.Projects/MonoDevelop.Projects.Dom/DomRegion.cs	(revision 121639)
> +++ core/MonoDevelop.Projects/MonoDevelop.Projects.Dom/DomRegion.cs	(working copy)
> @@ -55,7 +55,7 @@
>  		{
>  		}
>  		
> -		public DomRegion (int startLine, int startColumn, int endLine, int endColumn)
> +		public DomRegion (int startLine, int startColumn, int endLine, int endColumn) : this ()
>  		{
>  			this.Start = new DomLocation (startLine, startColumn);
>  			this.End   = new DomLocation (endLine, endColumn);
> _______________________________________________
> Monodevelop-devel-list mailing list
> Monodevelop-devel-list at lists.ximian.com
> http://lists.ximian.com/mailman/listinfo/monodevelop-devel-list



More information about the Monodevelop-devel-list mailing list