Time.st
changeset 7733 f556d689cf53
parent 7672 46f206594db3
child 7740 5a9d544b8906
--- a/Time.st	Fri Oct 31 17:06:49 2003 +0100
+++ b/Time.st	Mon Nov 03 17:41:46 2003 +0100
@@ -382,7 +382,7 @@
 seconds
     "return the number of seconds within the minute (i.e. 0..59)"
 
-    ^ (self getSeconds \\ 3600) \\ 60
+    ^ self getSeconds \\ 60
 
     "
      Time now seconds
@@ -665,5 +665,5 @@
 !Time class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Time.st,v 1.67 2003-10-17 09:22:16 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Time.st,v 1.68 2003-11-03 16:41:00 stefan Exp $'
 ! !