Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Web/System.Web.UI.WebControls/HierarchicalDataBoundControl.cs')
-rw-r--r--mcs/class/System.Web/System.Web.UI.WebControls/HierarchicalDataBoundControl.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/System.Web/System.Web.UI.WebControls/HierarchicalDataBoundControl.cs b/mcs/class/System.Web/System.Web.UI.WebControls/HierarchicalDataBoundControl.cs
index c343c301d92..0013ac89944 100644
--- a/mcs/class/System.Web/System.Web.UI.WebControls/HierarchicalDataBoundControl.cs
+++ b/mcs/class/System.Web/System.Web.UI.WebControls/HierarchicalDataBoundControl.cs
@@ -54,7 +54,7 @@ namespace System.Web.UI.WebControls
}
}
- protected virtual HierarchicalDataSourceView GetData (string viewPath)
+ protected HierarchicalDataSourceView GetData (string viewPath)
{
if (DataSource != null && DataSourceID != "")
throw new HttpException ();
@@ -66,7 +66,7 @@ namespace System.Web.UI.WebControls
return null;
}
- protected virtual IHierarchicalDataSource GetDataSource ()
+ protected IHierarchicalDataSource GetDataSource ()
{
if (DataSourceID != "")
return NamingContainer.FindControl (DataSourceID) as IHierarchicalDataSource;