Rectangle.st
changeset 13 62303f84ff5f
parent 5 67342904af11
child 32 ee1a621c696c
--- a/Rectangle.st	Sat Dec 11 01:46:55 1993 +0100
+++ b/Rectangle.st	Sat Dec 11 01:59:35 1993 +0100
@@ -38,7 +38,7 @@
 width          <Number>        the width of the rectangle
 height         <Number>        the height of the rectangle
 
-$Header: /cvs/stx/stx/libbasic/Rectangle.st,v 1.4 1993-10-13 02:13:27 claus Exp $
+$Header: /cvs/stx/stx/libbasic/Rectangle.st,v 1.5 1993-12-11 00:55:38 claus Exp $
 
 written 89 by claus
 '!
@@ -64,7 +64,7 @@
         if ((self == Rectangle) 
          && _isPoint(origin) 
          && _isPoint(extent)) {
-            _qCheckedAlignedNew(newRect, OHDR_SIZE + 4*sizeof(OBJ), __context);
+            _qCheckedAlignedNew(newRect, OHDR_SIZE + 4*sizeof(OBJ));
             _InstPtr(newRect)->o_class = Rectangle;
             _InstPtr(newRect)->i_instvars[0] = _PointInstPtr(origin)->p_x;
             _InstPtr(newRect)->i_instvars[1] = _PointInstPtr(origin)->p_y;
@@ -93,7 +93,7 @@
     if (_CanDoQuickNew(OHDR_SIZE + 4*sizeof(OBJ))) {
         /* short cut - rectangles are created so often ... */
         if (self == Rectangle) {
-            _qCheckedAlignedNew(newRect, OHDR_SIZE + 4*sizeof(OBJ), __context);
+            _qCheckedAlignedNew(newRect, OHDR_SIZE + 4*sizeof(OBJ));
             _InstPtr(newRect)->o_class = Rectangle;
             _InstPtr(newRect)->i_instvars[0] = left;
             _InstPtr(newRect)->i_instvars[1] = top;