Dispose calls Close & Whitespace cleanup

This commit is contained in:
Sean Kaim
2019-02-08 12:09:31 -05:00
parent b0bf31b29c
commit f7bfa82517
2 changed files with 2 additions and 3 deletions

View File

@@ -236,7 +236,6 @@ namespace mRemoteNG.Connection.Protocol
try
{
PuttyProcess.Close();
PuttyProcess.Dispose();
}
catch (Exception ex)

View File

@@ -14,7 +14,7 @@ namespace mRemoteNG.UI.Tabs
public partial class ConnectionTab : DockContent
{
/// <summary>
///Silent close ignores the popup asking for confirmation
///Silent close ignores the popup asking for confirmation
/// </summary>
public bool silentClose { get; set; }
/// <summary>
@@ -24,7 +24,7 @@ namespace mRemoteNG.UI.Tabs
public ConnectionTab()
{
InitializeComponent();
InitializeComponent();
GotFocus += ConnectionTab_GotFocus;
}