Tools__CodeView2.st
changeset 18927 cd61d99e3156
parent 18849 ebf4d59ded39
child 18962 afcb8240f293
equal deleted inserted replaced
18926:1b906d599ba3 18927:cd61d99e3156
  4672 ! !
  4672 ! !
  4673 
  4673 
  4674 !CodeView2::TextView methodsFor:'undo & again'!
  4674 !CodeView2::TextView methodsFor:'undo & again'!
  4675 
  4675 
  4676 nonUndoableDo: aBlock
  4676 nonUndoableDo: aBlock
  4677 
  4677     |sav|
  4678     super nonUndoableDo: aBlock.
  4678 
  4679     suppressNotifications := false.
  4679     sav := suppressNotifications.
       
  4680     [
       
  4681         super nonUndoableDo: aBlock.
       
  4682     ] ensure:[
       
  4683         suppressNotifications := sav.
       
  4684     ]
  4680 
  4685 
  4681     "Created: / 06-07-2011 / 17:48:27 / jv"
  4686     "Created: / 06-07-2011 / 17:48:27 / jv"
       
  4687     "Modified: / 17-07-2019 / 07:18:01 / Claus Gittinger"
  4682 !
  4688 !
  4683 
  4689 
  4684 undoableDo: aBlock info: into
  4690 undoableDo: aBlock info: into
  4685 
  4691     |sav|
  4686     super undoableDo: aBlock info: into.
  4692 
  4687     suppressNotifications := false.
  4693     sav := suppressNotifications.
       
  4694     [
       
  4695         super undoableDo:aBlock info:into.
       
  4696     ] ensure:[    
       
  4697         suppressNotifications := sav.
       
  4698     ].
  4688 
  4699 
  4689     "Created: / 06-07-2011 / 17:48:49 / jv"
  4700     "Created: / 06-07-2011 / 17:48:49 / jv"
       
  4701     "Modified (format): / 17-07-2019 / 07:35:16 / Claus Gittinger"
  4690 ! !
  4702 ! !
  4691 
  4703 
  4692 !CodeView2 class methodsFor:'documentation'!
  4704 !CodeView2 class methodsFor:'documentation'!
  4693 
  4705 
  4694 version
  4706 version