GraphicsContext.st
changeset 2360 c7ca5d55d8ce
parent 2354 2755d3d1addd
child 2392 5664d81a3ea4
--- a/GraphicsContext.st	Fri Sep 18 23:11:11 1998 +0200
+++ b/GraphicsContext.st	Tue Sep 22 16:34:05 1998 +0200
@@ -808,12 +808,13 @@
 
 lineStyle:aStyleSymbol
     "set the line-drawing-style;
-     possible styles are: #solid, #dashed, #doubleDashed"
+     possible styles are: #solid, #dashed, #doubleDashed,
+     #dotted, #dashDot or #dashDotDot."
 
     aStyleSymbol isNil ifTrue:[
-	lineStyle := #solid
+        lineStyle := #solid
     ] ifFalse:[
-	lineStyle := aStyleSymbol
+        lineStyle := aStyleSymbol
     ]
 
     "Modified: 12.5.1996 / 22:19:25 / cg"
@@ -2068,6 +2069,6 @@
 !GraphicsContext class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/GraphicsContext.st,v 1.69 1998-09-18 15:14:46 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/GraphicsContext.st,v 1.70 1998-09-22 14:33:52 cg Exp $'
 ! !
 GraphicsContext initialize!