Bugfix in EditSupport
authorJan Vrany <jan.vrany@fit.cvut.cz>
Tue, 01 Apr 2014 18:01:57 +0200
changeset 186 27c501b1c44c
parent 185 75738108cc3f
child 187 7baeeea7d8ae
Bugfix in EditSupport textView instvar was accidentically overwritten with codeView.
SmallSense__EditSupport.st
--- a/SmallSense__EditSupport.st	Mon Mar 31 23:43:25 2014 +0200
+++ b/SmallSense__EditSupport.st	Tue Apr 01 18:01:57 2014 +0200
@@ -333,7 +333,6 @@
 
 wordBeforeCursorConsisitingOfCharactersMatching: characterMatchBlock
     |  currentLine wordStart wordEnd |
-    textView := self codeView.
     currentLine := textView list at: textView cursorLine.
     currentLine isNil ifTrue:[ ^ '' ].
     wordEnd := textView cursorCol - 1.
@@ -351,6 +350,7 @@
     ^ ''
 
     "Created: / 31-03-2014 / 23:02:28 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 01-04-2014 / 18:00:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !EditSupport methodsFor:'private-completion'!