2005-11-30 Chris Toshok <toshok@ximian.com>
authorChris Toshok <toshok@novell.com>
Thu, 1 Dec 2005 01:39:50 +0000 (01:39 -0000)
committerChris Toshok <toshok@novell.com>
Thu, 1 Dec 2005 01:39:50 +0000 (01:39 -0000)
* ProfileBase.cs (Properties): mark as override, not static.

* ProfileProviderCollection.cs (ProfileProvider): mark as "new" to
fix warning.

svn path=/trunk/mcs/; revision=53740

mcs/class/System.Web/System.Web.Profile/ChangeLog
mcs/class/System.Web/System.Web.Profile/ProfileBase.cs
mcs/class/System.Web/System.Web.Profile/ProfileProviderCollection.cs

index 98eac72bdcaf8e42554d527fa638c5e586fd5115..352bcf8bc58e7a83098e414eb1b0598214b85a27 100644 (file)
@@ -1,3 +1,10 @@
+2005-11-30  Chris Toshok  <toshok@ximian.com>
+
+       * ProfileBase.cs (Properties): mark as override, not static.
+
+       * ProfileProviderCollection.cs (ProfileProvider): mark as "new" to
+       fix warning.
+
 2005-11-18  Chris Toshok  <toshok@ximian.com>
 
        * ProfileModule.cs: hook up saving of the request's profile.
index 0ef65311bdface0eb400cf317da02999213c8496..2f902b08340431b0965fb70ffacebcbe38d992c5 100644 (file)
@@ -123,7 +123,7 @@ namespace System.Web.Profile
                }
 
                [MonoTODO]
-               public static SettingsPropertyCollection Properties {
+               public override SettingsPropertyCollection Properties {
                        get {
                                throw new NotImplementedException ();
                        }
index 94ab91b03d08930fea918a226da88a6b6f22ecf2..896937a67c21e5b9c377f6ae1adb06fa3eb90460 100644 (file)
@@ -46,7 +46,7 @@ namespace System.Web.Profile
                }
 
                [MonoTODO]
-               public ProfileProvider this[string name] {
+               public new ProfileProvider this[string name] {
                        get {
                                throw new NotImplementedException ();
                        }