You've already forked linux-packaging-mono
Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
@ -33,9 +33,7 @@ using System.ComponentModel;
|
||||
|
||||
namespace System.Drawing.Printing
|
||||
{
|
||||
#if NET_2_0
|
||||
[Serializable]
|
||||
#endif
|
||||
[TypeConverter (typeof (MarginsConverter))]
|
||||
public class Margins : ICloneable {
|
||||
int left;
|
||||
@ -138,7 +136,6 @@ namespace System.Drawing.Printing
|
||||
return String.Format (ret, left, right, top, bottom);
|
||||
}
|
||||
|
||||
#if NET_2_0
|
||||
public static bool operator == (Margins m1, Margins m2)
|
||||
{
|
||||
// avoid recursion with == operator
|
||||
@ -154,6 +151,5 @@ namespace System.Drawing.Printing
|
||||
return ((object)m2 != null);
|
||||
return !m1.Equals (m2);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user