DSVColumnView.st
changeset 4686 dda678ab83bf
parent 4664 a537a996fb22
child 4772 11b5f36c5943
equal deleted inserted replaced
4685:86e8c0cc94d1 4686:dda678ab83bf
  2010         idx := 0
  2010         idx := 0
  2011     ] ifFalse:[
  2011     ] ifFalse:[
  2012         (row := aRow) isNumber ifTrue:[
  2012         (row := aRow) isNumber ifTrue:[
  2013             (row := self at:aRow) isNil ifTrue:[ ^ self ]
  2013             (row := self at:aRow) isNil ifTrue:[ ^ self ]
  2014         ].
  2014         ].
  2015         idx := columnDescriptors findFirst:[:aCol||desc|
  2015         idx := columnDescriptors 
  2016             aCol description readSelector == aSelector
  2016                 findFirst:[:aCol| aCol description readSelector == aSelector]
  2017         ]
       
  2018     ].
  2017     ].
  2019     self invalidateVisibleRow:aRow colAt:idx
  2018     self invalidateVisibleRow:aRow colAt:idx
  2020 !
  2019 !
  2021 
  2020 
  2022 redrawX:x y:y width:w height:h
  2021 redrawX:x y:y width:w height:h
  4824 ! !
  4823 ! !
  4825 
  4824 
  4826 !DSVColumnView class methodsFor:'documentation'!
  4825 !DSVColumnView class methodsFor:'documentation'!
  4827 
  4826 
  4828 version
  4827 version
  4829     ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.301 2014-10-23 08:45:18 ca Exp $'
  4828     ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.302 2014-12-14 13:30:26 cg Exp $'
  4830 !
  4829 !
  4831 
  4830 
  4832 version_CVS
  4831 version_CVS
  4833     ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.301 2014-10-23 08:45:18 ca Exp $'
  4832     ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.302 2014-12-14 13:30:26 cg Exp $'
  4834 ! !
  4833 ! !
  4835 
  4834