diff dwtx/jface/layout/AbstractColumnLayout.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 46a6e0e6ccd4
line wrap: on
line diff
--- a/dwtx/jface/layout/AbstractColumnLayout.d	Thu Apr 10 19:10:12 2008 +0200
+++ b/dwtx/jface/layout/AbstractColumnLayout.d	Fri Apr 11 01:24:25 2008 +0200
@@ -236,7 +236,7 @@
      * @see dwt.widgets.Layout#computeSize(dwt.widgets.Composite,
      *      int, int, bool)
      */
-    protected Point computeSize(Composite composite, int wHint, int hHint,
+    protected override Point computeSize(Composite composite, int wHint, int hHint,
             bool flushCache) {
         return computeTableTreeSize(getControl(composite), wHint, hHint);
     }
@@ -247,7 +247,7 @@
      * @see dwt.widgets.Layout#layout(dwt.widgets.Composite,
      *      bool)
      */
-    protected void layout(Composite composite, bool flushCache) {
+    protected override void layout(Composite composite, bool flushCache) {
         Rectangle area = composite.getClientArea();
         Scrollable table = getControl(composite);
         int tableWidth = table.getSize().x;