X-Aim – Diff between revs 1 and 3

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 1 Rev 3
Line 3... Line 3...
3   3  
4 namespace X_Aim 4 namespace X_Aim
5 { 5 {
6 internal static class Program 6 internal static class Program
-   7 {
-   8 private static Form _form1;
7 { 9  
8 /// <summary> 10 /// <summary>
9 /// The main entry point for the application. 11 /// The main entry point for the application.
10 /// </summary> 12 /// </summary>
11 [STAThread] 13 [STAThread]
12 private static void Main() 14 private static void Main()
13 { 15 {
14 Application.EnableVisualStyles(); 16 Application.EnableVisualStyles();
-   17 Application.SetCompatibleTextRenderingDefault(false);
-   18  
-   19 _form1 = new Form1();
15 Application.SetCompatibleTextRenderingDefault(false); 20  
16 Application.Run(new Form1()); 21 Application.Run();
17 } 22 }
18 } 23 }
19 } 24 }