diff dwtx/text/undo/DocumentUndoEvent.d @ 147:000f9136b8f7

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:35:05 +0200
parents c4fb132a086c
children 7926b636c282
line wrap: on
line diff
--- a/dwtx/text/undo/DocumentUndoEvent.d	Sun Aug 24 22:34:04 2008 +0200
+++ b/dwtx/text/undo/DocumentUndoEvent.d	Sun Aug 24 22:35:05 2008 +0200
@@ -44,29 +44,29 @@
      * Indicates that the described document event is about to be
      * undone.
      */
-    public static final int ABOUT_TO_UNDO= 1 << 0;
+    public static const int ABOUT_TO_UNDO= 1 << 0;
 
     /**
      * Indicates that the described document event is about to be
      * redone.
      */
-    public static final int ABOUT_TO_REDO= 1 << 1;
+    public static const int ABOUT_TO_REDO= 1 << 1;
 
     /**
      * Indicates that the described document event has been undone.
      */
-    public static final int UNDONE= 1 << 2;
+    public static const int UNDONE= 1 << 2;
 
     /**
      * Indicates that the described document event has been redone.
      */
-    public static final int REDONE= 1 << 3;
+    public static const int REDONE= 1 << 3;
 
     /**
      * Indicates that the described document event is a compound undo
      * or redo event.
      */
-    public static final int COMPOUND= 1 << 4;
+    public static const int COMPOUND= 1 << 4;
 
     /** The changed document. */
     private IDocument fDocument;