SmallSense__EditSupport.st
changeset 219 c69943a410fd
parent 218 0f5b160ecb9d
child 234 97857872ee47
--- a/SmallSense__EditSupport.st	Sun May 18 12:29:12 2014 +0100
+++ b/SmallSense__EditSupport.st	Sun May 18 12:57:20 2014 +0100
@@ -302,16 +302,17 @@
 !EditSupport methodsFor:'initialization'!
 
 initializeCompletion
+    | controller |
+
     UserPreferences current smallSenseCompletionEnabled ifTrue:[
         self completionEngineClass notNil ifTrue:[
-            completionController := self completionControllerClass for: service textView.
-            completionController support: self.
-            service textView completionSupport: completionController.
+            controller := self completionControllerClass for: service textView.
+            controller support: self.
+            service textView completionSupport: controller.
         ].
     ].
 
-    "Created: / 27-09-2013 / 13:20:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 13-05-2014 / 16:13:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Created: / 18-05-2014 / 12:40:57 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 initializeForService:aSmallSenseService