Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/mRemoteNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortecxx <tecxx@rrs.at>2021-12-25 20:55:59 +0300
committertecxx <tecxx@rrs.at>2021-12-25 20:55:59 +0300
commitf760131cf56c02dca88498df772784e83601b09d (patch)
treeaef07ca01d8265415164e11e9a8162c7eb6489b5
parentcdc1d5064feabaf60789d9cd69857666a319ba33 (diff)
remove dead function call
-rw-r--r--ExternalConnectors/TSS/SSConnectionForm.Designer.cs1
-rw-r--r--ExternalConnectors/TSS/SSConnectionForm.cs6
2 files changed, 0 insertions, 7 deletions
diff --git a/ExternalConnectors/TSS/SSConnectionForm.Designer.cs b/ExternalConnectors/TSS/SSConnectionForm.Designer.cs
index cd10f8b1..e4ab4eb7 100644
--- a/ExternalConnectors/TSS/SSConnectionForm.Designer.cs
+++ b/ExternalConnectors/TSS/SSConnectionForm.Designer.cs
@@ -96,7 +96,6 @@
this.btnOK.TabIndex = 10;
this.btnOK.Text = "OK";
this.btnOK.UseVisualStyleBackColor = true;
- this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCancel
//
diff --git a/ExternalConnectors/TSS/SSConnectionForm.cs b/ExternalConnectors/TSS/SSConnectionForm.cs
index d2adeff0..be3a5a3e 100644
--- a/ExternalConnectors/TSS/SSConnectionForm.cs
+++ b/ExternalConnectors/TSS/SSConnectionForm.cs
@@ -26,11 +26,5 @@
tbPassword.Enabled = !ch;
tbUsername.Enabled = !ch;
}
-
- private void btnOK_Click(object sender, EventArgs e)
- {
- // test connection first
-
- }
}
}