diff dwtx/jface/text/contentassist/AdditionalInfoController.d @ 162:1a5b8f8129df

...
author Frank Benoit <benoit@tionex.de>
date Mon, 08 Sep 2008 00:51:37 +0200
parents 3678e4f1a766
children 862b05e0334a
line wrap: on
line diff
--- a/dwtx/jface/text/contentassist/AdditionalInfoController.d	Wed Aug 27 14:49:30 2008 +0200
+++ b/dwtx/jface/text/contentassist/AdditionalInfoController.d	Mon Sep 08 00:51:37 2008 +0200
@@ -90,7 +90,7 @@
          * elapsed after it was scheduled without a {@link #reset(ICompletionProposal) reset}
          * to occur.
          */
-        private abstract class Task : Runnable {
+        private static abstract class Task : Runnable {
             /**
              * @return the delay in milliseconds before this task should be run
              */
@@ -211,7 +211,7 @@
                             public void run() {
                                 synchronized (this.outer) {
                                     if (proposal is getCurrentProposal()) {
-                                        Object info= proposal.getAdditionalProposalInfo();
+                                        Object info= stringcast(proposal.getAdditionalProposalInfo());
                                         showInformation(proposal, info);
                                     }
                                 }
@@ -643,6 +643,9 @@
     protected void hideInformationControl() {
         super.hideInformationControl();
     }
+    package void hideInformationControl_package() {
+        this.hideInformationControl();
+    }
 
     /**
      * @return the current information control, or <code>null</code> if none available