Empty body methods removed + CRLF

This commit is contained in:
ivandrofly 2015-03-03 21:25:56 +00:00
parent 9371fb8f2d
commit 163248629a
4 changed files with 2 additions and 33 deletions

View File

@ -93,7 +93,6 @@
this.radioButtonAutoRecalculate.TabIndex = 2; this.radioButtonAutoRecalculate.TabIndex = 2;
this.radioButtonAutoRecalculate.Text = "Recalculate"; this.radioButtonAutoRecalculate.Text = "Recalculate";
this.radioButtonAutoRecalculate.UseVisualStyleBackColor = true; this.radioButtonAutoRecalculate.UseVisualStyleBackColor = true;
this.radioButtonAutoRecalculate.CheckedChanged += new System.EventHandler(this.radioButtonradioButtonAutoRecalculate_CheckedChanged);
// //
// comboBoxPercent // comboBoxPercent
// //
@ -196,7 +195,6 @@
this.labelNote.Size = new System.Drawing.Size(279, 13); this.labelNote.Size = new System.Drawing.Size(279, 13);
this.labelNote.TabIndex = 7; this.labelNote.TabIndex = 7;
this.labelNote.Text = "Note: Display time will not overlap start time of next text"; this.labelNote.Text = "Note: Display time will not overlap start time of next text";
this.labelNote.Click += new System.EventHandler(this.labelNote_Click);
// //
// labelAddInPercent // labelAddInPercent
// //
@ -263,7 +261,6 @@
0, 0,
0, 0,
0}); 0});
this.numericUpDownMaxCharsSec.ValueChanged += new System.EventHandler(this.numericUpDownMaxCharsSec_ValueChanged);
// //
// labelMaxCharsPerSecond // labelMaxCharsPerSecond
// //
@ -273,7 +270,6 @@
this.labelMaxCharsPerSecond.Size = new System.Drawing.Size(80, 13); this.labelMaxCharsPerSecond.Size = new System.Drawing.Size(80, 13);
this.labelMaxCharsPerSecond.TabIndex = 5; this.labelMaxCharsPerSecond.TabIndex = 5;
this.labelMaxCharsPerSecond.Text = "Max. chars/sec"; this.labelMaxCharsPerSecond.Text = "Max. chars/sec";
this.labelMaxCharsPerSecond.Click += new System.EventHandler(this.labelMaxCharsPerSecond_Click);
// //
// AdjustDisplayDuration // AdjustDisplayDuration
// //
@ -300,7 +296,6 @@
this.ShowInTaskbar = false; this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Adjust display time"; this.Text = "Adjust display time";
this.Load += new System.EventHandler(this.AdjustDisplayDuration_Load);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FormAdjustDisplayTime_KeyDown); this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FormAdjustDisplayTime_KeyDown);
this.groupBoxAdjustVia.ResumeLayout(false); this.groupBoxAdjustVia.ResumeLayout(false);
this.groupBoxAdjustVia.PerformLayout(); this.groupBoxAdjustVia.PerformLayout();

View File

@ -150,31 +150,5 @@ namespace Nikse.SubtitleEdit.Forms
{ {
FixEnabled(); FixEnabled();
} }
private void radioButtonradioButtonAutoRecalculate_CheckedChanged(object sender, EventArgs e)
{
}
private void labelMaxCharsPerSecond_Click(object sender, EventArgs e)
{
}
private void labelNote_Click(object sender, EventArgs e)
{
}
private void numericUpDownMaxCharsSec_ValueChanged(object sender, EventArgs e)
{
}
private void AdjustDisplayDuration_Load(object sender, EventArgs e)
{
}
} }
} }

View File

@ -149,4 +149,4 @@ namespace Nikse.SubtitleEdit.Forms
} }
} }
} }

View File

@ -44,4 +44,4 @@ namespace Nikse.SubtitleEdit.Logic
RedoLinePosition = -1; RedoLinePosition = -1;
} }
} }
} }