EditTextView.st
changeset 1438 bed1564b0640
parent 1437 ab84b08a9f9c
child 1439 d1b3ca91ed8a
equal deleted inserted replaced
1437:ab84b08a9f9c 1438:bed1564b0640
   751 
   751 
   752     "Modified: 29.4.1996 / 12:42:33 / cg"
   752     "Modified: 29.4.1996 / 12:42:33 / cg"
   753 !
   753 !
   754 
   754 
   755 update:something with:aParameter from:changedObject
   755 update:something with:aParameter from:changedObject
   756     something == acceptChannel ifTrue:[
   756     changedObject == acceptChannel ifTrue:[
   757 self halt.
       
   758         self accept.
   757         self accept.
   759         ^ self.
   758         ^ self.
   760     ].
   759     ].
   761     super update:something with:aParameter from:changedObject
   760     super update:something with:aParameter from:changedObject
   762 
   761 
   763     "Created: / 30.1.1998 / 14:15:56 / cg"
   762     "Created: / 30.1.1998 / 14:15:56 / cg"
   764     "Modified: / 30.1.1998 / 14:16:39 / cg"
   763     "Modified: / 30.1.1998 / 15:44:50 / cg"
   765 ! !
   764 ! !
   766 
   765 
   767 !EditTextView methodsFor:'cursor handling'!
   766 !EditTextView methodsFor:'cursor handling'!
   768 
   767 
   769 cursorBacktab
   768 cursorBacktab
  4172 ! !
  4171 ! !
  4173 
  4172 
  4174 !EditTextView class methodsFor:'documentation'!
  4173 !EditTextView class methodsFor:'documentation'!
  4175 
  4174 
  4176 version
  4175 version
  4177     ^ '$Header: /cvs/stx/stx/libwidg/EditTextView.st,v 1.144 1998-01-30 14:21:51 cg Exp $'
  4176     ^ '$Header: /cvs/stx/stx/libwidg/EditTextView.st,v 1.145 1998-02-01 12:15:12 cg Exp $'
  4178 ! !
  4177 ! !