category changes
authorClaus Gittinger <cg@exept.de>
Tue, 22 Aug 2000 00:45:29 +0200
changeset 5552 31b5cc144476
parent 5551 fa4886352aef
child 5553 1740d3ae50ff
category changes
Float.st
Fraction.st
LongFloat.st
Number.st
Rectangle.st
ShortFloat.st
--- a/Float.st	Mon Aug 21 23:54:32 2000 +0200
+++ b/Float.st	Tue Aug 22 00:45:29 2000 +0200
@@ -1810,7 +1810,7 @@
 
 ! !
 
-!Float methodsFor:'truncation and rounding'!
+!Float methodsFor:'truncation & rounding'!
 
 ceiling
     "return the smallest integer which is greater or equal to the receiver."
@@ -2081,6 +2081,6 @@
 !Float class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Float.st,v 1.110 2000-06-30 16:59:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Float.st,v 1.111 2000-08-21 22:44:01 cg Exp $'
 ! !
 Float initialize!
--- a/Fraction.st	Mon Aug 21 23:54:32 2000 +0200
+++ b/Fraction.st	Tue Aug 22 00:45:29 2000 +0200
@@ -10,11 +10,13 @@
  hereby transferred.
 "
 
+"{ Package: 'stx:libbasic' }"
+
 Number subclass:#Fraction
-        instanceVariableNames:'numerator denominator'
-        classVariableNames:'FractionOne FractionZero'
-        poolDictionaries:''
-        category:'Magnitude-Numbers'
+	instanceVariableNames:'numerator denominator'
+	classVariableNames:'FractionOne FractionZero'
+	poolDictionaries:''
+	category:'Magnitude-Numbers'
 !
 
 !Fraction class methodsFor:'documentation'!
@@ -664,7 +666,7 @@
     ^ (denominator < 0)
 ! !
 
-!Fraction methodsFor:'truncation and rounding'!
+!Fraction methodsFor:'truncation & rounding'!
 
 fractionPart
     "extract the after-decimal fraction part."
@@ -746,6 +748,6 @@
 !Fraction class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Fraction.st,v 1.49 2000-04-07 11:46:44 ps Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Fraction.st,v 1.50 2000-08-21 22:44:06 cg Exp $'
 ! !
 Fraction initialize!
--- a/LongFloat.st	Mon Aug 21 23:54:32 2000 +0200
+++ b/LongFloat.st	Tue Aug 22 00:45:29 2000 +0200
@@ -944,7 +944,7 @@
 %}
 ! !
 
-!LongFloat methodsFor:'truncation and rounding'!
+!LongFloat methodsFor:'truncation & rounding'!
 
 floor
     "return the integer nearest the receiver towards negative infinity."
@@ -992,5 +992,5 @@
 !LongFloat class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/LongFloat.st,v 1.12 2000-06-23 19:03:20 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/LongFloat.st,v 1.13 2000-08-21 22:44:41 cg Exp $'
 ! !
--- a/Number.st	Mon Aug 21 23:54:32 2000 +0200
+++ b/Number.st	Tue Aug 22 00:45:29 2000 +0200
@@ -656,7 +656,7 @@
 
 ! !
 
-!Number methodsFor:'truncation and rounding'!
+!Number methodsFor:'truncation & rounding'!
 
 detentBy: detent atMultiplesOf: grid snap: snap
     "Map all values that are within detent/2 of any multiple of grid 
@@ -721,5 +721,5 @@
 !Number class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Number.st,v 1.60 2000-04-07 08:10:40 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Number.st,v 1.61 2000-08-21 22:44:59 cg Exp $'
 ! !
--- a/Rectangle.st	Mon Aug 21 23:54:32 2000 +0200
+++ b/Rectangle.st	Tue Aug 22 00:45:29 2000 +0200
@@ -10,6 +10,8 @@
  hereby transferred.
 "
 
+"{ Package: 'stx:libbasic' }"
+
 Geometric subclass:#Rectangle
 	instanceVariableNames:'left top width height'
 	classVariableNames:''
@@ -1720,7 +1722,7 @@
     ^ false
 ! !
 
-!Rectangle methodsFor:'truncation and rounding'!
+!Rectangle methodsFor:'truncation & rounding'!
 
 rounded
     "return a copy of the receiver with rounded coordinates.
@@ -1758,5 +1760,5 @@
 !Rectangle class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Rectangle.st,v 1.71 1999-11-24 16:29:53 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Rectangle.st,v 1.72 2000-08-21 22:45:11 cg Exp $'
 ! !
--- a/ShortFloat.st	Mon Aug 21 23:54:32 2000 +0200
+++ b/ShortFloat.st	Tue Aug 22 00:45:29 2000 +0200
@@ -947,7 +947,7 @@
 %}
 ! !
 
-!ShortFloat methodsFor:'truncation and rounding'!
+!ShortFloat methodsFor:'truncation & rounding'!
 
 floor
     "return the integer nearest the receiver towards negative infinity."
@@ -1008,5 +1008,5 @@
 !ShortFloat class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ShortFloat.st,v 1.60 2000-06-28 08:57:45 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ShortFloat.st,v 1.61 2000-08-21 22:45:29 cg Exp $'
 ! !