Sfoglia il codice sorgente

2003-08-10 Gonzalo Paniagua Javier <[email protected]>

	* Image.cs: commented out [MonoTODO]'s to fix windows build. Why?

svn path=/trunk/mcs/; revision=17222
Gonzalo Paniagua Javier 22 anni fa
parent
commit
8850e2edb8

+ 4 - 0
mcs/class/System.Drawing/System.Drawing/impl/Xr/ChangeLog

@@ -1,3 +1,7 @@
+2003-08-10  Gonzalo Paniagua Javier <[email protected]>
+
+	* Image.cs: commented out [MonoTODO]'s to fix windows build. Why?
+
 2003-08-08  Duncan Mak  <[email protected]>
 
 	* Graphics.cs (DrawArc):

+ 14 - 13
mcs/class/System.Drawing/System.Drawing/impl/Xr/Image.cs

@@ -11,6 +11,7 @@
 using System;
 using System.Runtime.Remoting;
 using System.Runtime.Serialization;
+using System.Drawing;
 using System.Drawing.Imaging;
 using System.IO;
 using System.Runtime.InteropServices;
@@ -32,7 +33,7 @@ namespace System.Drawing.XrImpl {
 		// constructor
 		public Image () {}
 
-		[MonoTODO]
+		//[MonoTODO] - Breaks windows build - gon
 		public virtual object Clone()
 		{
 			throw new NotImplementedException ();
@@ -65,13 +66,13 @@ namespace System.Drawing.XrImpl {
 			throw new NotImplementedException ();
 		}
 		
-		[MonoTODO]
+		//[MonoTODO]
 		public static Image FromStream(Stream stream)
 		{
 			throw new NotImplementedException();
 		}
 	
-		[MonoTODO]
+		//[MonoTODO]
 		public static Image FromStream(Stream stream, bool useIcm)
 		{
 			throw new NotImplementedException();
@@ -108,13 +109,13 @@ namespace System.Drawing.XrImpl {
 			throw new NotImplementedException ();
 		}
 	
-		[MonoTODO]
+		//[MonoTODO]
 		int IImage.GetFrameCount (FrameDimension dimension)
 		{
 			throw new NotImplementedException ();
 		}
 		
-		[MonoTODO]
+		//[MonoTODO]
 		PropertyItem IImage.GetPropertyItem (int propid)
 		{
 			throw new NotImplementedException();
@@ -155,25 +156,25 @@ namespace System.Drawing.XrImpl {
 			throw new NotImplementedException ();
 		}
 	
-		[MonoTODO]
+		//[MonoTODO]
 		void IImage.Save(Stream stream, ImageFormat format)
 		{
 			throw new NotImplementedException ();
 		}
 		
-		[MonoTODO]
+		//[MonoTODO]
 		void IImage.Save (string filename, ImageFormat format)
 		{
 			throw new NotImplementedException ();
 		}
 		
-		[MonoTODO]
+		//[MonoTODO]
 		int IImage.SelectActiveFrame (FrameDimension dimension, int frameIndex)
 		{
 			throw new NotImplementedException();
 		}
 	
-		[MonoTODO]
+		//[MonoTODO]
 		void IImage.SetPropertyItem (PropertyItem item)
 		{
 			throw new NotImplementedException();
@@ -233,14 +234,14 @@ namespace System.Drawing.XrImpl {
 			}
 		}
 	
-		[MonoTODO]
+		//[MonoTODO]
 		PropertyItem [] IImage.PropertyItems {
 			get {
 				throw new NotImplementedException();
 			}
 		}
 
-		[MonoTODO]
+		//[MonoTODO]
 		ImageFormat IImage.RawFormat {
 			get {
 				return imageFormat;
@@ -265,12 +266,12 @@ namespace System.Drawing.XrImpl {
 			}
 		}
 
-		[MonoTODO]
+		//[MonoTODO]
 		public void Dispose ()
 		{
 		}
 
-		[MonoTODO]
+		//[MonoTODO]
 		protected virtual void Dispose (bool disposing)
 		{
 			throw new NotImplementedException();