Cairo__PathDataType.st
changeset 12 e5f0c18af8a9
parent 11 fdc697f4f190
child 23 38ee47dbd976
--- a/Cairo__PathDataType.st	Wed May 30 20:06:35 2012 +0000
+++ b/Cairo__PathDataType.st	Thu Jun 14 09:18:25 2012 +0000
@@ -6,7 +6,7 @@
 	instanceVariableNames:''
 	classVariableNames:'PATH_MOVE_TO PATH_LINE_TO PATH_CURVE_TO PATH_CLOSE_PATH'
 	poolDictionaries:''
-	category:'Cairo - Constants'
+	category:'Cairo-Constants'
 !
 
 
@@ -18,6 +18,8 @@
 	PATH_LINE_TO := 1.
 	PATH_CURVE_TO := 2.
 	PATH_CLOSE_PATH := 3.
+
+    "Modified: / 10-09-2008 / 18:19:53 / Jan Vrany <vranyj1@fel.cvut.cz>"
 ! !
 
 !PathDataType class methodsFor:'constants'!
@@ -25,21 +27,29 @@
 PATH_CLOSE_PATH
 
 	^PATH_CLOSE_PATH
+
+    "Modified: / 10-09-2008 / 18:19:53 / Jan Vrany <vranyj1@fel.cvut.cz>"
 !
 
 PATH_CURVE_TO
 
 	^PATH_CURVE_TO
+
+    "Modified: / 10-09-2008 / 18:19:53 / Jan Vrany <vranyj1@fel.cvut.cz>"
 !
 
 PATH_LINE_TO
 
 	^PATH_LINE_TO
+
+    "Modified: / 10-09-2008 / 18:19:53 / Jan Vrany <vranyj1@fel.cvut.cz>"
 !
 
 PATH_MOVE_TO
 
 	^PATH_MOVE_TO
+
+    "Modified: / 10-09-2008 / 18:19:53 / Jan Vrany <vranyj1@fel.cvut.cz>"
 ! !
 
 !PathDataType class methodsFor:'documentation'!