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

...
author Frank Benoit <benoit@tionex.de>
date Mon, 08 Sep 2008 00:51:37 +0200
parents 25f1f92fa3df
children c3583c6ec027
line wrap: on
line diff
--- a/dwtx/jface/text/contentassist/PopupCloser.d	Wed Aug 27 14:49:30 2008 +0200
+++ b/dwtx/jface/text/contentassist/PopupCloser.d	Mon Sep 08 00:51:37 2008 +0200
@@ -205,7 +205,7 @@
      */
     public void shellDeactivated(ShellEvent e) {
         if (fContentAssistant !is null && ! fContentAssistant.hasProposalPopupFocus())
-            fContentAssistant.hide();
+            fContentAssistant.hide_package();
     }
 
 
@@ -215,7 +215,7 @@
      */
     public void shellClosed(ShellEvent e) {
         if (fContentAssistant !is null)
-            fContentAssistant.hide();
+            fContentAssistant.hide_package();
     }
 
     /*
@@ -232,7 +232,7 @@
                     return;
 
                 if (fAdditionalInfoController.getInternalAccessor().getInformationControlReplacer() is null)
-                    fAdditionalInfoController.hideInformationControl();
+                    fAdditionalInfoController.hideInformationControl_package();
                 else if (!fAdditionalInfoController.getInternalAccessor().isReplaceInProgress()) {
                     IInformationControl infoControl= fAdditionalInfoController.getCurrentInformationControl2();
                     // During isReplaceInProgress(), events can come from the replacing information control
@@ -240,7 +240,7 @@
                         Control control= cast(Control) event.widget;
                         IInformationControlExtension5 iControl5= cast(IInformationControlExtension5) infoControl;
                         if (!(iControl5.containsControl(control)))
-                            fAdditionalInfoController.hideInformationControl();
+                            fAdditionalInfoController.hideInformationControl_package();
                         else if (event.type is DWT.MouseWheel)
                             fAdditionalInfoController.getInternalAccessor().replaceInformationControl(false);
                     } else if (infoControl !is null && infoControl.isFocusControl()) {
@@ -294,7 +294,7 @@
                             control.getDisplay().asyncExec(new class()  Runnable {
                                 public void run() {
                                     if (fContentAssistant !is null && ! fContentAssistant.hasProposalPopupFocus())
-                                        fContentAssistant.hide();
+                                        fContentAssistant.hide_package();
                                 }
                             });
                         }