diff dwtx/jface/text/contentassist/ContentAssistant.d @ 146:75302ef3f92f

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:34:04 +0200
parents 26688fec6d23
children 000f9136b8f7
line wrap: on
line diff
--- a/dwtx/jface/text/contentassist/ContentAssistant.d	Sun Aug 24 22:31:00 2008 +0200
+++ b/dwtx/jface/text/contentassist/ContentAssistant.d	Sun Aug 24 22:34:04 2008 +0200
@@ -285,8 +285,8 @@
         private Object fMutex= new Object();
         private int fShowStyle;
 
-        private final static int SHOW_PROPOSALS= 1;
-        private final static int SHOW_CONTEXT_INFO= 2;
+        private const static int SHOW_PROPOSALS= 1;
+        private const static int SHOW_CONTEXT_INFO= 2;
 
         protected this() {
         }
@@ -428,11 +428,11 @@
 
         // Presentation types.
         /** The presentation type for the proposal selection popup. */
-        public final static int LAYOUT_PROPOSAL_SELECTOR= 0;
+        public const static int LAYOUT_PROPOSAL_SELECTOR= 0;
         /** The presentation type for the context selection popup. */
-        public final static int LAYOUT_CONTEXT_SELECTOR= 1;
+        public const static int LAYOUT_CONTEXT_SELECTOR= 1;
         /** The presentation type for the context information hover . */
-        public final static int LAYOUT_CONTEXT_INFO_POPUP= 2;
+        public const static int LAYOUT_CONTEXT_INFO_POPUP= 2;
 
         int fContextType= LAYOUT_CONTEXT_SELECTOR;
         Shell[] fShells= new Shell[3];