Cursor.st
changeset 5356 b1b849f034e9
parent 5351 e6de62cf6b71
child 6207 265c0bb79b00
--- a/Cursor.st	Thu Oct 01 18:24:41 2009 +0200
+++ b/Cursor.st	Fri Oct 02 10:27:27 2009 +0200
@@ -84,14 +84,15 @@
 
 examples
 "
-    get a standard cursor:
-
-        Cursor wait
-        Cursor stop
-        Cursor normal
+    get a standard cursors:
+                                                                        [exBegin]
+        Cursor wait.
+        Cursor stop.
+        Cursor normal.
+                                                                        [exEnd]
 
     create a custom cursor:
-
+                                                                        [exBegin]
         Cursor extent:16@16 
                fromArray:#[ 2r00000000 2r00000000
                             2r00000000 2r00000000
@@ -110,8 +111,7 @@
                             2r00000000 2r00000000
                             2r00000000 2r00000000]
                 offset:-8 @ -8   
-
-
+                                                                        [exEnd]
 
     some common cursors ...
                                                                         [exBegin]
@@ -3532,7 +3532,11 @@
 !Cursor class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/Cursor.st,v 1.110 2009-09-27 08:25:45 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/Cursor.st,v 1.111 2009-10-02 08:27:27 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libview/Cursor.st,v 1.111 2009-10-02 08:27:27 cg Exp $'
 ! !
 
 Cursor initialize!