From 3c97b7b6a2080ac9af5d78d2880d3f91660166e3 Mon Sep 17 00:00:00 2001 From: Nicholas O'Connor Date: Tue, 31 May 2016 14:11:15 -0700 Subject: [PATCH] remove unneeded using directives --- TilandisGUI/Form1.Designer.cs | 20 ++++++++++---------- TilandisGUI/Form1.cs | 7 ------- TilandisGUI/Program.cs | 3 --- 3 files changed, 10 insertions(+), 20 deletions(-) diff --git a/TilandisGUI/Form1.Designer.cs b/TilandisGUI/Form1.Designer.cs index b101d42..fd48f60 100644 --- a/TilandisGUI/Form1.Designer.cs +++ b/TilandisGUI/Form1.Designer.cs @@ -28,7 +28,7 @@ private void InitializeComponent() { this.path = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.grp_linksettings = new System.Windows.Forms.GroupBox(); this.label5 = new System.Windows.Forms.Label(); - this.button2 = new System.Windows.Forms.Button(); + this.btn_savelink = new System.Windows.Forms.Button(); this.cbx_asadmin = new System.Windows.Forms.CheckBox(); this.edt_args = new System.Windows.Forms.TextBox(); this.label4 = new System.Windows.Forms.Label(); @@ -72,7 +72,7 @@ private void InitializeComponent() { // grp_linksettings // this.grp_linksettings.Controls.Add(this.label5); - this.grp_linksettings.Controls.Add(this.button2); + this.grp_linksettings.Controls.Add(this.btn_savelink); this.grp_linksettings.Controls.Add(this.cbx_asadmin); this.grp_linksettings.Controls.Add(this.edt_args); this.grp_linksettings.Controls.Add(this.label4); @@ -100,14 +100,14 @@ private void InitializeComponent() { this.label5.TabIndex = 13; this.label5.Text = "Bold fields are required."; // - // button2 + // btn_savelink // - this.button2.Location = new System.Drawing.Point(9, 215); - this.button2.Name = "button2"; - this.button2.Size = new System.Drawing.Size(75, 23); - this.button2.TabIndex = 12; - this.button2.Text = "Save"; - this.button2.UseVisualStyleBackColor = true; + this.btn_savelink.Location = new System.Drawing.Point(9, 215); + this.btn_savelink.Name = "btn_savelink"; + this.btn_savelink.Size = new System.Drawing.Size(75, 23); + this.btn_savelink.TabIndex = 12; + this.btn_savelink.Text = "Save"; + this.btn_savelink.UseVisualStyleBackColor = true; // // cbx_asadmin // @@ -252,7 +252,7 @@ private void InitializeComponent() { private System.Windows.Forms.ColumnHeader linkname; private System.Windows.Forms.ColumnHeader path; private System.Windows.Forms.GroupBox grp_linksettings; - private System.Windows.Forms.Button button2; + private System.Windows.Forms.Button btn_savelink; private System.Windows.Forms.CheckBox cbx_asadmin; private System.Windows.Forms.TextBox edt_args; private System.Windows.Forms.Label label4; diff --git a/TilandisGUI/Form1.cs b/TilandisGUI/Form1.cs index d901b40..7046f4a 100644 --- a/TilandisGUI/Form1.cs +++ b/TilandisGUI/Form1.cs @@ -1,11 +1,4 @@ using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; using System.Windows.Forms; using System.Runtime.InteropServices; using System.IO; diff --git a/TilandisGUI/Program.cs b/TilandisGUI/Program.cs index 76aa667..a23d937 100644 --- a/TilandisGUI/Program.cs +++ b/TilandisGUI/Program.cs @@ -1,7 +1,4 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; using System.Windows.Forms; namespace TilandisGUI {