diff dwtx/jface/preference/FileFieldEditor.d @ 43:ea8ff534f622

Fix override and super aliases
author Frank Benoit <benoit@tionex.de>
date Fri, 11 Apr 2008 01:24:25 +0200
parents b3c8e32d406f
children 3ed358ab21c9
line wrap: on
line diff
--- a/dwtx/jface/preference/FileFieldEditor.d	Thu Apr 10 19:10:12 2008 +0200
+++ b/dwtx/jface/preference/FileFieldEditor.d	Fri Apr 11 01:24:25 2008 +0200
@@ -83,7 +83,7 @@
      * Method declared on StringButtonFieldEditor.
      * Opens the file chooser dialog and returns the selected file.
      */
-    protected String changePressed() {
+    protected override String changePressed() {
         auto f = new FilePath(getTextControl().getText());
         if (!f.exists()) {
             f = cast(FilePath)null;
@@ -100,7 +100,7 @@
      * Method declared on StringFieldEditor.
      * Checks whether the text input field specifies an existing file.
      */
-    protected bool checkState() {
+    protected override bool checkState() {
 
         String msg = null;