X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Drawing%2FSystem.Drawing.Drawing2D%2FPenType.cs;h=e1e4bbcc91cb59fe484c4aca4e3efdd880854587;hb=a5e40870bd3bb18e1681afed6c71e7edfdb80534;hp=6d3a4d13f7b90c90cf94b759ea686f7e03b199d1;hpb=24a7667524f1e4b5d722c45cd69e63a9f905cf56;p=mono.git diff --git a/mcs/class/System.Drawing/System.Drawing.Drawing2D/PenType.cs b/mcs/class/System.Drawing/System.Drawing.Drawing2D/PenType.cs index 6d3a4d13f7b..e1e4bbcc91c 100644 --- a/mcs/class/System.Drawing/System.Drawing.Drawing2D/PenType.cs +++ b/mcs/class/System.Drawing/System.Drawing.Drawing2D/PenType.cs @@ -1,14 +1,11 @@ -// -// System.Drawing.Drawing2D.PenType.cs -// -// Author: -// Dennis Hayes (dennish@Raytek.com) -// -// (C) 2002/3 Ximian, Inc -//using System; - // -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) +// System.Drawing.Drawing2D.PenType.cs +// +// Author: +// Dennis Hayes (dennish@Raytek.com) +// +// (C) 2002/3 Ximian, Inc +// Copyright (C) 2004,2006 Novell, Inc (http://www.novell.com) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the @@ -29,18 +26,17 @@ // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // - -namespace System.Drawing.Drawing2D -{ - /// - /// Summary description for PenType. - /// - [Serializable] - public enum PenType { - HatchFill = 1, - LinearGradient = 4, - PathGradient = 3, - SolidColor = 0, - TextureFill = 2 - } -} + +namespace System.Drawing.Drawing2D { + +#if ONLY_1_1 + [Serializable] +#endif + public enum PenType { + HatchFill = 1, + LinearGradient = 4, + PathGradient = 3, + SolidColor = 0, + TextureFill = 2 + } +}