Skip to content

Commit

Permalink
Remove invalid xml params / unnecessary verbatim
Browse files Browse the repository at this point in the history
  • Loading branch information
robinvanpoppel committed Apr 12, 2020
1 parent 8ca6866 commit 5a1f88d
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 7 deletions.
1 change: 0 additions & 1 deletion KeeTrayTOTP/FormAbout.cs
Expand Up @@ -18,7 +18,6 @@ internal partial class FormAbout : Form
/// <summary>
/// Windows Form Constructor.
/// </summary>
/// <param name="plugin">Plugin Host.</param>
internal FormAbout()
{
InitializeComponent();
Expand Down
3 changes: 1 addition & 2 deletions KeeTrayTOTP/FormHelp.cs
Expand Up @@ -17,7 +17,6 @@ internal partial class FormHelp : Form
/// <summary>
/// Windows Form Constructor.
/// </summary>
/// <param name="plugin">Plugin Host.</param>
/// <param name="gettingStarted">Getting Started Display Flag.</param>
internal FormHelp(bool gettingStarted = false)
{
Expand All @@ -33,7 +32,7 @@ internal FormHelp(bool gettingStarted = false)
private void FormHelp_Load(object sender, EventArgs e)
{
Size = new Size(550, 350);
Text = Localization.Strings.Help + @" - " + Localization.Strings.TrayTOTPPlugin;
Text = Localization.Strings.Help + " - " + Localization.Strings.TrayTOTPPlugin;
foreach (Control ctl in SplitContainerHelp.Panel2.Controls)
{
ctl.Location = new Point(3, 3);
Expand Down
2 changes: 1 addition & 1 deletion KeeTrayTOTP/FormSettings.cs
Expand Up @@ -46,7 +46,7 @@ private void FormSettings_Load(object sender, EventArgs e)
{
GlobalWindowManager.AddWindow(this);

Text = Localization.Strings.Settings + @" - " + Localization.Strings.TrayTOTPPlugin; // Set form's name using constants.
Text = Localization.Strings.Settings + " - " + Localization.Strings.TrayTOTPPlugin; // Set form's name using constants.
Working(true, true); // Set controls depending on the state of action.
WorkerLoad.RunWorkerAsync(); // Load Settings in form controls.
}
Expand Down
1 change: 0 additions & 1 deletion KeeTrayTOTP/Libraries/TOTPProvider.cs
Expand Up @@ -68,7 +68,6 @@ public int Length
/// <summary>
/// Instantiate a new TOTP_Generator.
/// </summary>
/// <param name="initSettings">Saved Settings.</param>
public TOTPProvider(string[] settings, ref TimeCorrectionCollection tcc)
{
this._duration = Convert.ToInt16(settings[0]);
Expand Down
2 changes: 1 addition & 1 deletion KeeTrayTOTP/SetupTOTP.cs
Expand Up @@ -33,7 +33,7 @@ private void SetupTOTP_Load(object sender, EventArgs e)
{
GlobalWindowManager.AddWindow(this);

Text = Localization.Strings.Setup + @" - " + Localization.Strings.TrayTOTPPlugin; //Set form's name using constants.
Text = Localization.Strings.Setup + " - " + Localization.Strings.TrayTOTPPlugin; //Set form's name using constants.

if (_plugin.SettingsCheck(_entry) || _plugin.SeedCheck(_entry)) //Checks the the totp settings exists.
{
Expand Down
1 change: 0 additions & 1 deletion KeeTrayTOTP/TrayTOTP_TimeCorrectionCollection.cs
Expand Up @@ -55,7 +55,6 @@ internal bool Enable
/// <summary>
/// Handles Time Correction for TOTP Generators insuring generation accuracy.
/// </summary>
/// <param name="Plugin">Handle to the plugin's class.</param>
/// <param name="enable">Enabled by Default.</param>
internal TimeCorrectionCollection(bool enable = true)
{
Expand Down

0 comments on commit 5a1f88d

Please sign in to comment.