[System.Drawing] Add support for a null culture argument to the ConvertFrom () method...
[mono.git] / mcs / class / System.Drawing / System.Drawing / SystemFonts.cs
index b7ad0d87924eb070e644248c1918908e96122449..381349d9440b66ccfd71089e3eb5ef8329ade127 100644 (file)
 
 #if NET_2_0
 
-namespace System.Drawing
-{
-       public sealed class SystemFonts
-       {
+namespace System.Drawing {
+
+       public sealed class SystemFonts {
+               
                static SystemFonts ()
                {
                }
@@ -48,7 +48,7 @@ namespace System.Drawing
                                return DefaultFont;
 
                        if (systemFontName == "DialogFont")
-                               return DialogFont;
+                               return DialogFont;      
 
                        if (systemFontName == "IconTitleFont")
                                return IconTitleFont;
@@ -63,42 +63,42 @@ namespace System.Drawing
                                return SmallCaptionFont;
 
                        if (systemFontName == "StatusFont")
-                               return StatusFont;
+                               return StatusFont;                      
                        
                        return null;
                }
 
-               public static Font CaptionFont {
+               public static Font CaptionFont { 
                        get { return new Font ("Microsoft Sans Serif", 11, "CaptionFont"); }
                }
 
-               public static Font DefaultFont {
+               public static Font DefaultFont  { 
                        get { return new Font ("Microsoft Sans Serif", 8.25f, "DefaultFont"); }
                }
 
-               public static Font DialogFont  {
+               public static Font DialogFont  { 
                        get { return new Font ("Tahoma", 8, "DialogFont"); }
                }
 
-               public static Font IconTitleFont {
+               public static Font IconTitleFont  { 
                        get { return new Font ("Microsoft Sans Serif", 11, "IconTitleFont"); }
                }
 
-               public static Font MenuFont {
+               public static Font MenuFont  { 
                        get { return new Font ("Microsoft Sans Serif", 11, "MenuFont"); }
                }
 
-               public static Font MessageBoxFont {
+               public static Font MessageBoxFont  { 
                        get { return new Font ("Microsoft Sans Serif", 11, "MessageBoxFont"); }
                }
 
-               public static Font SmallCaptionFont {
+               public static Font SmallCaptionFont  { 
                        get { return new Font ("Microsoft Sans Serif", 11, "SmallCaptionFont"); }
                }
 
-               public static Font StatusFont {
+               public static Font StatusFont  { 
                        get { return new Font ("Microsoft Sans Serif", 11, "StatusFont"); }
-               }
+               }             
        }
 }