ViewWithAcceptAndCancelBar.st
changeset 10920 9228a3108da8
parent 10919 5b83c014a5ae
child 11816 4fd3ddf4f2ff
child 12123 4bde08cebd48
equal deleted inserted replaced
10919:5b83c014a5ae 10920:9228a3108da8
   159 !
   159 !
   160 
   160 
   161 updateBarVisibility
   161 updateBarVisibility
   162     |modified|
   162     |modified|
   163 
   163 
   164      modified := reallyModifiedHolder notNil 
   164     modified := reallyModifiedHolder notNil 
   165                 ifTrue:[ reallyModifiedHolder value ]
   165                 ifTrue:[ reallyModifiedHolder value ]
   166                 ifFalse:[ slaveView modifiedChannel value ].
   166                 ifFalse:[ slaveView modifiedChannel value ].
   167 
   167 
   168     modified ifTrue:[
   168     modified ifTrue:[
   169         self showBar
   169         self showBar
   170     ] ifFalse:[
   170     ] ifFalse:[
   171         self hideBar
   171         self hideBar
   172     ].
   172     ].
       
   173 
       
   174     "Modified (format): / 29-11-2011 / 14:05:04 / cg"
   173 ! !
   175 ! !
   174 
   176 
   175 !ViewWithAcceptAndCancelBar methodsFor:'initialization'!
   177 !ViewWithAcceptAndCancelBar methodsFor:'initialization'!
   176 
   178 
   177 initialize
   179 initialize
   279 ! !
   281 ! !
   280 
   282 
   281 !ViewWithAcceptAndCancelBar class methodsFor:'documentation'!
   283 !ViewWithAcceptAndCancelBar class methodsFor:'documentation'!
   282 
   284 
   283 version
   285 version
   284     ^ '$Header: /cvs/stx/stx/libtool/ViewWithAcceptAndCancelBar.st,v 1.9 2011-11-29 13:04:57 cg Exp $'
   286     ^ '$Header: /cvs/stx/stx/libtool/ViewWithAcceptAndCancelBar.st,v 1.10 2011-11-29 13:05:12 cg Exp $'
   285 !
   287 !
   286 
   288 
   287 version_CVS
   289 version_CVS
   288     ^ '$Header: /cvs/stx/stx/libtool/ViewWithAcceptAndCancelBar.st,v 1.9 2011-11-29 13:04:57 cg Exp $'
   290     ^ '$Header: /cvs/stx/stx/libtool/ViewWithAcceptAndCancelBar.st,v 1.10 2011-11-29 13:05:12 cg Exp $'
   289 ! !
   291 ! !