diff dwtx/jface/viewers/TreeSelection.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 04b47443bb01
line wrap: on
line diff
--- a/dwtx/jface/viewers/TreeSelection.d	Thu Apr 10 19:10:12 2008 +0200
+++ b/dwtx/jface/viewers/TreeSelection.d	Fri Apr 11 01:24:25 2008 +0200
@@ -178,7 +178,7 @@
     public override int opEquals(Object obj) {
         if (!(cast(TreeSelection)obj)) {
             // Fall back to super implementation, see bug 135837.
-            return super.equals(obj);
+            return super.opEquals(obj);
         }
         TreeSelection selection = cast(TreeSelection) obj;
         int size = getPaths().length;