GraphColumnViewSpec.st
changeset 743 d82f2c606b02
parent 740 9f14842f602e
child 744 5cfa9e8f2f3e
equal deleted inserted replaced
742:287f20104462 743:d82f2c606b02
   341 
   341 
   342     |l|
   342     |l|
   343 
   343 
   344     l := super skippedInLiteralEncoding asOrderedCollection.
   344     l := super skippedInLiteralEncoding asOrderedCollection.
   345 
   345 
   346     zoomY              isNil ifTrue:[l add:zoomY].
   346     zoomY              isNil ifTrue:[l add:#zoomY].
   347     windowSize         isNil ifTrue:[l add:windowSize].
   347     windowSize         isNil ifTrue:[l add:#windowSize].
   348 
   348 
   349     self showGrid ifFalse:[
   349     self showGrid ifFalse:[
   350         l add:showGrid.
   350         l add:#showGrid.
   351     ].
   351     ].
   352 
   352 
   353     (self showDefaultMenu and:[menu isNil]) ifFalse:[
   353     (self showDefaultMenu and:[menu isNil]) ifFalse:[
   354         l add:#showDefaultMenu
   354         l add:#showDefaultMenu
   355     ].        
   355     ].        
   387 ! !
   387 ! !
   388 
   388 
   389 !GraphColumnViewSpec class methodsFor:'documentation'!
   389 !GraphColumnViewSpec class methodsFor:'documentation'!
   390 
   390 
   391 version
   391 version
   392     ^ '$Header: /cvs/stx/stx/libwidg2/GraphColumnViewSpec.st,v 1.1 1998-02-07 15:13:55 ca Exp $'
   392     ^ '$Header: /cvs/stx/stx/libwidg2/GraphColumnViewSpec.st,v 1.2 1998-02-07 15:51:22 ca Exp $'
   393 ! !
   393 ! !
   394 GraphColumnViewSpec initialize!
   394 GraphColumnViewSpec initialize!