comparison dwtx/jface/viewers/AcceptAllFilter.d @ 43:ea8ff534f622

Fix override and super aliases
author Frank Benoit <benoit@tionex.de>
date Fri, 11 Apr 2008 01:24:25 +0200
parents b6c35faf97c8
children
comparison
equal deleted inserted replaced
42:4567a6f54939 43:ea8ff534f622
54 } 54 }
55 55
56 /* (non-Javadoc) 56 /* (non-Javadoc)
57 * @see java.lang.Object#equals(java.lang.Object) 57 * @see java.lang.Object#equals(java.lang.Object)
58 */ 58 */
59 public bool equals(Object other) { 59 public override int opEquals(Object other) {
60 return other is this || null !is cast(AcceptAllFilter)other ; 60 return other is this || null !is cast(AcceptAllFilter)other ;
61 } 61 }
62 62
63 } 63 }