Merge pull request #2590 from esdrubal/wcf_req
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / ToolBarButtonStyle.cs
index 2178f093f0ec310605db9a18030741852ae9e24b..aa99ba03b2e599eee9347cd214e957525ce70d7b 100644 (file)
@@ -1,11 +1,5 @@
 //
 // System.Windows.Forms.ToolBarButtonStyle.cs
-//
-// Author:
-//   Dennis Hayes (dennish@raytek.com)
-// (C) 2002 Ximian, Inc.  http://www.ximian.com
-//
-
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
+// Copyright (C) 2004 Novell, Inc.
+//
+// Authors:
+//     Ravindra (rkumar@novell.com)
+//
 
-using System;
 
-namespace System.Windows.Forms {
+// COMPLETE
 
-       /// <summary>
-       /// </summary>
-       public enum ToolBarButtonStyle {
-               DropDownButton = 4,
+namespace System.Windows.Forms
+{
+       public enum ToolBarButtonStyle
+       {
                PushButton = 1,
+               ToggleButton = 2,
                Separator = 3,
-               ToggleButton =2
+               DropDownButton =4
        }
 }