*** empty log message ***
authorca
Sat, 07 Feb 1998 16:51:22 +0100
changeset 743 d82f2c606b02
parent 742 287f20104462
child 744 5cfa9e8f2f3e
*** empty log message ***
GraphColumnView3DSpec.st
GraphColumnViewSpec.st
--- a/GraphColumnView3DSpec.st	Sat Feb 07 16:51:11 1998 +0100
+++ b/GraphColumnView3DSpec.st	Sat Feb 07 16:51:22 1998 +0100
@@ -285,10 +285,10 @@
 
     l := super skippedInLiteralEncoding asOrderedCollection.
 
-    rotateX isNil ifTrue:[l add:rotateX].
-    rotateY isNil ifTrue:[l add:rotateY].
-    rotateZ isNil ifTrue:[l add:rotateZ].
-    zoomZ isNil   ifTrue:[l add:zoomZ].
+    rotateX isNil ifTrue:[l add:#rotateX].
+    rotateY isNil ifTrue:[l add:#rotateY].
+    rotateZ isNil ifTrue:[l add:#rotateZ].
+    zoomZ isNil   ifTrue:[l add:#zoomZ].
 
     ^ l
 ! !
@@ -296,5 +296,5 @@
 !GraphColumnView3DSpec class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/GraphColumnView3DSpec.st,v 1.1 1998-02-07 15:13:30 ca Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/GraphColumnView3DSpec.st,v 1.2 1998-02-07 15:51:17 ca Exp $'
 ! !
--- a/GraphColumnViewSpec.st	Sat Feb 07 16:51:11 1998 +0100
+++ b/GraphColumnViewSpec.st	Sat Feb 07 16:51:22 1998 +0100
@@ -343,11 +343,11 @@
 
     l := super skippedInLiteralEncoding asOrderedCollection.
 
-    zoomY              isNil ifTrue:[l add:zoomY].
-    windowSize         isNil ifTrue:[l add:windowSize].
+    zoomY              isNil ifTrue:[l add:#zoomY].
+    windowSize         isNil ifTrue:[l add:#windowSize].
 
     self showGrid ifFalse:[
-        l add:showGrid.
+        l add:#showGrid.
     ].
 
     (self showDefaultMenu and:[menu isNil]) ifFalse:[
@@ -389,6 +389,6 @@
 !GraphColumnViewSpec class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/GraphColumnViewSpec.st,v 1.1 1998-02-07 15:13:55 ca Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/GraphColumnViewSpec.st,v 1.2 1998-02-07 15:51:22 ca Exp $'
 ! !
 GraphColumnViewSpec initialize!