Changed "new" to "virtual/override".

This commit is contained in:
feodor_fitsner 2012-09-13 20:39:06 -07:00
parent 861d0f121f
commit 285ad0499f
5 changed files with 5 additions and 5 deletions

View file

@ -954,7 +954,7 @@ namespace WebsitePanel.Providers.FTP
#endregion
protected bool IsMsFTPInstalled()
protected virtual bool IsMsFTPInstalled()
{
int value = 0;
RegistryKey root = Registry.LocalMachine;

View file

@ -12,7 +12,7 @@ namespace WebsitePanel.Providers.FTP
{
}
protected new bool IsMsFTPInstalled()
protected override bool IsMsFTPInstalled()
{
int value = 0;
RegistryKey root = Registry.LocalMachine;

View file

@ -3477,7 +3477,7 @@ namespace WebsitePanel.Providers.Web
#endregion
public new bool IsIISInstalled()
public override bool IsIISInstalled()
{
int value = 0;
RegistryKey root = Registry.LocalMachine;

View file

@ -3368,7 +3368,7 @@ namespace WebsitePanel.Providers.Web
}
#endregion
public bool IsIISInstalled()
public virtual bool IsIISInstalled()
{
int value = 0;
RegistryKey root = Registry.LocalMachine;

View file

@ -12,7 +12,7 @@ namespace WebsitePanel.Providers.Web
{
}
public new bool IsIISInstalled()
public override bool IsIISInstalled()
{
int value = 0;
RegistryKey root = Registry.LocalMachine;