2009-01-30 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.UI / ThemeProvider.cs
index cf6d325e063e605b671610076b20c4ffb9998bd3..f9be3569b710bf9550082531b8ba6f0b2d1cb29e 100644 (file)
@@ -39,9 +39,9 @@ namespace System.Web.UI {
        {
                IDesignerHost host;
                string name;
-               string themeDefinition;
                string[] cssFiles;
-               string themePath;
+               //string themeDefinition;
+               //string themePath;
 
                public ThemeProvider (IDesignerHost host,
                                      string name,
@@ -51,30 +51,30 @@ namespace System.Web.UI {
                {
                        this.host = host;
                        this.name = name;
-                       this.themeDefinition = themeDefinition;
+                       //this.themeDefinition = themeDefinition;
                        this.cssFiles = cssFiles; /* XXX copy? */
-                       this.themePath = themePath;
+                       //this.themePath = themePath;
                }
 
-               [MonoTODO]
+               [MonoTODO("Not implemented")]
                public SkinBuilder GetSkinBuilder (Control control)
                {
                        throw new NotImplementedException ();
                }
 
-               [MonoTODO]
+               [MonoTODO ("Not implemented")]
                public IDictionary GetSkinControlBuildersForControlType (Type type)
                {
                        throw new NotImplementedException ();
                }
 
-               [MonoTODO]
+               [MonoTODO ("Not implemented")]
                public ICollection GetSkinsForControl (Type type)
                {
                        throw new NotImplementedException ();
                }
 
-               [MonoTODO]
+               [MonoTODO ("Not implemented")]
                public int ContentHashCode {
                        get { throw new NotImplementedException (); }
                }