# HG changeset patch # User Frank Benoit # Date 1219837910 -7200 # Node ID ab8b5765e3d16617350f1451b34d4dd9e994eef9 # Parent 649b8e223d5a6ad59f2fbcee0512f0cb7ed6c59e fix implements diff -r 649b8e223d5a -r ab8b5765e3d1 dwt/events/ControlAdapter.d --- a/dwt/events/ControlAdapter.d Wed Aug 27 13:48:25 2008 +0200 +++ b/dwt/events/ControlAdapter.d Wed Aug 27 13:51:50 2008 +0200 @@ -25,7 +25,7 @@ * @see ControlListener * @see ControlEvent */ -public abstract class ControlAdapter implements ControlListener { +public abstract class ControlAdapter : ControlListener { /** * Sent when the location (x, y) of a control changes relative diff -r 649b8e223d5a -r ab8b5765e3d1 dwt/events/ExpandAdapter.d --- a/dwt/events/ExpandAdapter.d Wed Aug 27 13:48:25 2008 +0200 +++ b/dwt/events/ExpandAdapter.d Wed Aug 27 13:51:50 2008 +0200 @@ -27,7 +27,7 @@ * * @since 3.2 */ -public abstract class ExpandAdapter implements ExpandListener { +public abstract class ExpandAdapter : ExpandListener { /** * Sent when an item is collapsed. diff -r 649b8e223d5a -r ab8b5765e3d1 dwt/events/FocusAdapter.d --- a/dwt/events/FocusAdapter.d Wed Aug 27 13:48:25 2008 +0200 +++ b/dwt/events/FocusAdapter.d Wed Aug 27 13:51:50 2008 +0200 @@ -25,7 +25,7 @@ * @see FocusListener * @see FocusEvent */ -public abstract class FocusAdapter implements FocusListener { +public abstract class FocusAdapter : FocusListener { /** * Sent when a control gets focus. diff -r 649b8e223d5a -r ab8b5765e3d1 dwt/events/KeyAdapter.d --- a/dwt/events/KeyAdapter.d Wed Aug 27 13:48:25 2008 +0200 +++ b/dwt/events/KeyAdapter.d Wed Aug 27 13:51:50 2008 +0200 @@ -25,7 +25,7 @@ * @see KeyListener * @see KeyEvent */ -public abstract class KeyAdapter implements KeyListener { +public abstract class KeyAdapter : KeyListener { /** * Sent when a key is pressed on the system keyboard. diff -r 649b8e223d5a -r ab8b5765e3d1 dwt/events/MenuAdapter.d --- a/dwt/events/MenuAdapter.d Wed Aug 27 13:48:25 2008 +0200 +++ b/dwt/events/MenuAdapter.d Wed Aug 27 13:51:50 2008 +0200 @@ -25,7 +25,7 @@ * @see MenuListener * @see MenuEvent */ -public abstract class MenuAdapter implements MenuListener { +public abstract class MenuAdapter : MenuListener { /** * Sent when a menu is hidden. diff -r 649b8e223d5a -r ab8b5765e3d1 dwt/events/MouseAdapter.d --- a/dwt/events/MouseAdapter.d Wed Aug 27 13:48:25 2008 +0200 +++ b/dwt/events/MouseAdapter.d Wed Aug 27 13:51:50 2008 +0200 @@ -26,7 +26,7 @@ * @see MouseListener * @see MouseEvent */ -public abstract class MouseAdapter implements MouseListener { +public abstract class MouseAdapter : MouseListener { /** * Sent when a mouse button is pressed twice within the diff -r 649b8e223d5a -r ab8b5765e3d1 dwt/events/MouseTrackAdapter.d --- a/dwt/events/MouseTrackAdapter.d Wed Aug 27 13:48:25 2008 +0200 +++ b/dwt/events/MouseTrackAdapter.d Wed Aug 27 13:51:50 2008 +0200 @@ -26,7 +26,7 @@ * @see MouseTrackListener * @see MouseEvent */ -public abstract class MouseTrackAdapter implements MouseTrackListener { +public abstract class MouseTrackAdapter : MouseTrackListener { /** * Sent when the mouse pointer passes into the area of diff -r 649b8e223d5a -r ab8b5765e3d1 dwt/events/SelectionAdapter.d --- a/dwt/events/SelectionAdapter.d Wed Aug 27 13:48:25 2008 +0200 +++ b/dwt/events/SelectionAdapter.d Wed Aug 27 13:51:50 2008 +0200 @@ -25,7 +25,7 @@ * @see SelectionListener * @see SelectionEvent */ -public abstract class SelectionAdapter implements SelectionListener { +public abstract class SelectionAdapter : SelectionListener { /** * Sent when selection occurs in the control. diff -r 649b8e223d5a -r ab8b5765e3d1 dwt/events/ShellAdapter.d --- a/dwt/events/ShellAdapter.d Wed Aug 27 13:48:25 2008 +0200 +++ b/dwt/events/ShellAdapter.d Wed Aug 27 13:51:50 2008 +0200 @@ -25,7 +25,7 @@ * @see ShellListener * @see ShellEvent */ -public abstract class ShellAdapter implements ShellListener { +public abstract class ShellAdapter : ShellListener { /** * Sent when a shell becomes the active window. diff -r 649b8e223d5a -r ab8b5765e3d1 dwt/events/TreeAdapter.d --- a/dwt/events/TreeAdapter.d Wed Aug 27 13:48:25 2008 +0200 +++ b/dwt/events/TreeAdapter.d Wed Aug 27 13:51:50 2008 +0200 @@ -25,7 +25,7 @@ * @see TreeListener * @see TreeEvent */ -public abstract class TreeAdapter implements TreeListener { +public abstract class TreeAdapter : TreeListener { /** * Sent when a tree branch is collapsed. diff -r 649b8e223d5a -r ab8b5765e3d1 dwt/graphics/Device.d --- a/dwt/graphics/Device.d Wed Aug 27 13:48:25 2008 +0200 +++ b/dwt/graphics/Device.d Wed Aug 27 13:51:50 2008 +0200 @@ -33,7 +33,7 @@ * can have a graphics context (GC) created for them, and they * can be drawn on by sending messages to the associated GC. */ -public abstract class Device implements Drawable { +public abstract class Device : Drawable { /* Debugging */ public static bool DEBUG; diff -r 649b8e223d5a -r ab8b5765e3d1 dwt/graphics/Image.d --- a/dwt/graphics/Image.d Wed Aug 27 13:48:25 2008 +0200 +++ b/dwt/graphics/Image.d Wed Aug 27 13:51:50 2008 +0200 @@ -74,7 +74,7 @@ * @see ImageData * @see ImageLoader */ -public final class Image : Resource implements Drawable { +public final class Image : Resource , Drawable { /** * specifies whether the receiver is a bitmap or an icon diff -r 649b8e223d5a -r ab8b5765e3d1 dwt/graphics/ImageData.d --- a/dwt/graphics/ImageData.d Wed Aug 27 13:48:25 2008 +0200 +++ b/dwt/graphics/ImageData.d Wed Aug 27 13:51:50 2008 +0200 @@ -35,7 +35,7 @@ * @see ImageLoader */ -public final class ImageData implements CloneableCompatibility { +public final class ImageData : CloneableCompatibility { /** * The width of the image, in pixels. diff -r 649b8e223d5a -r ab8b5765e3d1 dwt/graphics/Point.d --- a/dwt/graphics/Point.d Wed Aug 27 13:48:25 2008 +0200 +++ b/dwt/graphics/Point.d Wed Aug 27 13:51:50 2008 +0200 @@ -38,7 +38,7 @@ * @see Rectangle */ -public final class Point implements SerializableCompatibility { +public final class Point : SerializableCompatibility { /** * the x coordinate of the point diff -r 649b8e223d5a -r ab8b5765e3d1 dwt/graphics/RGB.d --- a/dwt/graphics/RGB.d Wed Aug 27 13:48:25 2008 +0200 +++ b/dwt/graphics/RGB.d Wed Aug 27 13:51:50 2008 +0200 @@ -38,7 +38,7 @@ * @see Color */ -public final class RGB implements SerializableCompatibility { +public final class RGB : SerializableCompatibility { /** * the red component of the RGB diff -r 649b8e223d5a -r ab8b5765e3d1 dwt/graphics/Rectangle.d --- a/dwt/graphics/Rectangle.d Wed Aug 27 13:48:25 2008 +0200 +++ b/dwt/graphics/Rectangle.d Wed Aug 27 13:51:50 2008 +0200 @@ -41,7 +41,7 @@ * @see Point */ -public final class Rectangle implements SerializableCompatibility { +public final class Rectangle : SerializableCompatibility { /** * the x coordinate of the rectangle diff -r 649b8e223d5a -r ab8b5765e3d1 dwt/widgets/Control.d --- a/dwt/widgets/Control.d Wed Aug 27 13:48:25 2008 +0200 +++ b/dwt/widgets/Control.d Wed Aug 27 13:51:50 2008 +0200 @@ -69,7 +69,7 @@ * within the DWT implementation. *

*/ -public abstract class Control : Widget implements Drawable { +public abstract class Control : Widget , Drawable { /** * the handle to the OS resource * (Warning: This field is platform dependent) diff -r 649b8e223d5a -r ab8b5765e3d1 dwt/widgets/TypedListener.d --- a/dwt/widgets/TypedListener.d Wed Aug 27 13:48:25 2008 +0200 +++ b/dwt/widgets/TypedListener.d Wed Aug 27 13:51:50 2008 +0200 @@ -68,7 +68,7 @@ * * @see Listener */ -public class TypedListener implements Listener { +public class TypedListener : Listener { /** * The receiver's event listener