whitespace clean up

This commit is contained in:
Sean Kaim
2019-01-08 13:09:41 -05:00
parent a107d0586f
commit 40ac2124d8
3 changed files with 11 additions and 11 deletions

View File

@@ -12,7 +12,7 @@ namespace mRemoteNG.UI.Forms.OptionsPages
ApplyTheme();
PageIcon = Resources.Key_Icon;
}
public override string PageName {
get => Language.Credentials;
set { }

View File

@@ -112,7 +112,7 @@ namespace mRemoteNG.UI.Forms.OptionsPages
Settings.Default.SwitchToMCOnInformation = chkSwitchToMCInformation.Checked;
Settings.Default.SwitchToMCOnWarning = chkSwitchToMCWarnings.Checked;
Settings.Default.SwitchToMCOnError = chkSwitchToMCErrors.Checked;
}
private void SaveLoggingSettings()

View File

@@ -12,11 +12,11 @@ namespace mRemoteNG.UI.Forms.OptionsPages
InitializeComponent();
ThemeManager.getInstance().ThemeChanged += ApplyTheme;
}
#region Public Properties
// ReSharper disable once UnusedAutoPropertyAccessor.Global
[Browsable(false)]public virtual string PageName {get; set;}
public virtual Icon PageIcon {get; protected set;}
public virtual Image IconImage => PageIcon?.ToBitmap();
@@ -25,22 +25,22 @@ namespace mRemoteNG.UI.Forms.OptionsPages
#region Public Methods
public virtual void ApplyLanguage()
{
}
public virtual void LoadSettings()
{
}
public virtual void SaveSettings()
{
}
public virtual void RevertSettings()
{
}
#endregion