diff dwtx/jface/text/AbstractInformationControl.d @ 134:51e6e63f930e

Regex fix for casts
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 01:46:20 +0200
parents 7d818bd32d63
children 65801ad2b265
line wrap: on
line diff
--- a/dwtx/jface/text/AbstractInformationControl.d	Sun Aug 24 01:29:22 2008 +0200
+++ b/dwtx/jface/text/AbstractInformationControl.d	Sun Aug 24 01:46:20 2008 +0200
@@ -776,7 +776,7 @@
                 public void handleEvent(Event event) {
                     Object[] listeners= fFocusListeners.getListeners();
                     for (int i= 0; i < listeners.length; i++) {
-                        FocusListener focusListener= (FocusListener)listeners[i];
+                        FocusListener focusListener= cast(FocusListener)listeners[i];
                         if (event.type is DWT.Activate) {
                             focusListener.focusGained(new FocusEvent(event));
                         } else {