WingMan – Diff between revs 7 and 14

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 7 Rev 14
1 using System; 1 using System;
2 using System.Windows.Forms; 2 using System.Windows.Forms;
3   3  
4 namespace WingMan 4 namespace WingMan
5 { 5 {
6 internal static class Program 6 internal static class Program
7 { 7 {
8 /// <summary> 8 /// <summary>
9 /// The main entry point for the application. 9 /// The main entry point for the application.
10 /// </summary> 10 /// </summary>
11 [STAThread] 11 [STAThread]
12 private static void Main() 12 private static void Main()
13 { 13 {
14 Application.EnableVisualStyles(); 14 Application.EnableVisualStyles();
15 Application.SetCompatibleTextRenderingDefault(false); 15 Application.SetCompatibleTextRenderingDefault(false);
16 Application.Run(new WingManForm()); 16 Application.Run(new WingManForm());
17 } 17 }
18 } 18 }
19 } 19 }
20   20  
-   21
Generated by GNU Enscript 1.6.5.90.
-   22  
-   23  
-   24