diff org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/custom/StyledTextRenderer.d @ 36:d46287db17ed

rakefile reorg, swt win phobosification
author Frank Benoit <benoit@tionex.de>
date Tue, 24 Mar 2009 08:48:41 +0100
parents 950d84783eac
children 536e43f63c81
line wrap: on
line diff
--- a/org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/custom/StyledTextRenderer.d	Mon Mar 23 18:28:04 2009 +0100
+++ b/org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/custom/StyledTextRenderer.d	Tue Mar 24 08:48:41 2009 +0100
@@ -77,20 +77,20 @@
     StyleRange[] styles;
     StyleRange[] stylesSet;
     int stylesSetCount = 0;
-    final static int BULLET_MARGIN = 8;
+    const static int BULLET_MARGIN = 8;
 
-    final static bool COMPACT_STYLES = true;
-    final static bool MERGE_STYLES = true;
+    const static bool COMPACT_STYLES = true;
+    const static bool MERGE_STYLES = true;
 
-    final static int GROW = 32;
-    final static int IDLE_TIME = 50;
-    final static int CACHE_SIZE = 128;
+    const static int GROW = 32;
+    const static int IDLE_TIME = 50;
+    const static int CACHE_SIZE = 128;
 
-    final static int BACKGROUND = 1 << 0;
-    final static int ALIGNMENT = 1 << 1;
-    final static int INDENT = 1 << 2;
-    final static int JUSTIFY = 1 << 3;
-    final static int SEGMENTS = 1 << 5;
+    const static int BACKGROUND = 1 << 0;
+    const static int ALIGNMENT = 1 << 1;
+    const static int INDENT = 1 << 2;
+    const static int JUSTIFY = 1 << 3;
+    const static int SEGMENTS = 1 << 5;
 
     static class LineInfo {
         int flags;