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

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:34:04 +0200
parents c4fb132a086c
children
line wrap: on
line diff
--- a/dwtx/jface/text/contentassist/IContentAssistant.d	Sun Aug 24 22:31:00 2008 +0200
+++ b/dwtx/jface/text/contentassist/IContentAssistant.d	Sun Aug 24 22:34:04 2008 +0200
@@ -113,17 +113,17 @@
 
     //------ proposal popup orientation styles ------------
     /** The context info list will overlay the list of completion proposals. */
-    public final static int PROPOSAL_OVERLAY= 10;
+    public const static int PROPOSAL_OVERLAY= 10;
     /** The completion proposal list will be removed before the context info list will be shown. */
-    public final static int PROPOSAL_REMOVE=  11;
+    public const static int PROPOSAL_REMOVE=  11;
     /** The context info list will be presented without hiding or overlapping the completion proposal list. */
-    public final static int PROPOSAL_STACKED= 12;
+    public const static int PROPOSAL_STACKED= 12;
 
     //------ context info box orientation styles ----------
     /** Context info will be shown above the location it has been requested for without hiding the location. */
-    public final static int CONTEXT_INFO_ABOVE= 20;
+    public const static int CONTEXT_INFO_ABOVE= 20;
     /** Context info will be shown below the location it has been requested for without hiding the location. */
-    public final static int CONTEXT_INFO_BELOW= 21;
+    public const static int CONTEXT_INFO_BELOW= 21;
 
 
     /**