mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 03:58:45 +08:00
minor cleanup
This commit is contained in:
@@ -52,7 +52,7 @@ namespace mRemoteNG.Container
|
||||
return (ContainerInfo)MemberwiseClone();
|
||||
}
|
||||
|
||||
private void SetDefaults()
|
||||
private new void SetDefaults()
|
||||
{
|
||||
IsExpanded = true;
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace mRemoteNG.Tree.Root
|
||||
LocalizedAttributes.LocalizedDefaultValue("strConnections"),
|
||||
LocalizedAttributes.LocalizedDisplayName("strPropertyNameName"),
|
||||
LocalizedAttributes.LocalizedDescription("strPropertyDescriptionName")]
|
||||
public virtual string Name
|
||||
public override string Name
|
||||
{
|
||||
get { return _name; }
|
||||
set
|
||||
@@ -46,16 +46,13 @@ namespace mRemoteNG.Tree.Root
|
||||
Browsable(true),
|
||||
LocalizedAttributes.LocalizedDisplayName("strPasswordProtect"),
|
||||
TypeConverter(typeof(Tools.MiscTools.YesNoTypeConverter))]
|
||||
public bool Password { get; set; }
|
||||
public new bool Password { get; set; }
|
||||
|
||||
[Browsable(false)]
|
||||
public string PasswordString {get; set;}
|
||||
|
||||
[Browsable(false)]
|
||||
public RootNodeType Type {get; set;}
|
||||
|
||||
[Browsable(false)]
|
||||
public TreeNode TreeNode {get; set;}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user