1.1 --- a/Form1.cs Fri Dec 19 21:07:15 2014 +0100
1.2 +++ b/Form1.cs Mon Dec 22 11:40:23 2014 +0100
1.3 @@ -11,7 +11,7 @@
1.4 /// <summary>
1.5 /// Summary description for Form1.
1.6 /// </summary>
1.7 - public class Form1 : System.Windows.Forms.Form
1.8 + public class MainForm : System.Windows.Forms.Form
1.9 {
1.10 /// <summary>
1.11 /// Required designer variable.
1.12 @@ -22,7 +22,7 @@
1.13 private System.Windows.Forms.Label label2;
1.14 private Timer _timer;
1.15
1.16 - public Form1()
1.17 + public MainForm()
1.18 {
1.19 //
1.20 // Required for Windows Form Designer support
1.21 @@ -103,7 +103,7 @@
1.22 [STAThread]
1.23 static void Main()
1.24 {
1.25 - Application.Run(new Form1());
1.26 + Application.Run(new MainForm());
1.27 }
1.28
1.29 private void Form1_Load(object sender, System.EventArgs e)