diff dwtx/jface/text/contentassist/CompletionProposalPopup.d @ 133:7d818bd32d63

Fix ctors to this with gvim regexp
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 01:29:22 +0200
parents c4fb132a086c
children 51e6e63f930e
line wrap: on
line diff
--- a/dwtx/jface/text/contentassist/CompletionProposalPopup.d	Sun Aug 24 01:13:39 2008 +0200
+++ b/dwtx/jface/text/contentassist/CompletionProposalPopup.d	Sun Aug 24 01:29:22 2008 +0200
@@ -157,7 +157,7 @@
          * @param operationCode the operation code
          * @since 3.4
          */
-        public ProposalSelectionHandler(int operationCode) {
+        public this(int operationCode) {
             Assert.isLegal(operationCode is SELECT_NEXT || operationCode is SELECT_PREVIOUS);
             fOperationCode= operationCode;
         }
@@ -295,7 +295,7 @@
     private final class CommandKeyListener : KeyAdapter {
         private KeySequence fCommandSequence;
         
-        private CommandKeyListener(KeySequence keySequence) {
+        private this(KeySequence keySequence) {
             fCommandSequence= keySequence;
         }
         
@@ -469,7 +469,7 @@
      * @param infoController the information control collaborating with this popup
      * @since 2.0
      */
-    public CompletionProposalPopup(ContentAssistant contentAssistant, ITextViewer viewer, AdditionalInfoController infoController) {
+    public this(ContentAssistant contentAssistant, ITextViewer viewer, AdditionalInfoController infoController) {
         fContentAssistant= contentAssistant;
         fViewer= viewer;
         fAdditionalInfoController= infoController;
@@ -484,7 +484,7 @@
      * @param infoController the information control collaborating with this popup
      * @since 3.0
      */
-    public CompletionProposalPopup(ContentAssistant contentAssistant, IContentAssistSubjectControl contentAssistSubjectControl, AdditionalInfoController infoController) {
+    public this(ContentAssistant contentAssistant, IContentAssistSubjectControl contentAssistSubjectControl, AdditionalInfoController infoController) {
         fContentAssistant= contentAssistant;
         fContentAssistSubjectControl= contentAssistSubjectControl;
         fAdditionalInfoController= infoController;