#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Fri, 20 Jan 2017 18:52:46 +0100
changeset 5409 5ab35a5ebc67
parent 5408 a10927558000
child 5410 56776faa77eb
#REFACTORING by cg class: DataSetLabel changed: #redrawX:w:h:inset:on: (send #clippingBounds: instead of #clippingRectangle:)
DataSetLabel.st
--- a/DataSetLabel.st	Fri Jan 20 18:52:35 2017 +0100
+++ b/DataSetLabel.st	Fri Jan 20 18:52:46 2017 +0100
@@ -373,7 +373,7 @@
                 "/ must clip ...
                 prevClip := aLabelView clippingRectangleOrNil.
                 mustUndoClip := true.
-                aLabelView clippingRectangle:(Rectangle 
+                aLabelView clippingBounds:(Rectangle 
                                     left:xLeft top:y0 
                                     width:width height:height).
             ].
@@ -383,7 +383,7 @@
         y0 := y0 + (shownLabel heightOn:aLabelView) + goodLookingVerticalSpacing.
 
         mustUndoClip == true ifTrue:[
-            aLabelView clippingRectangle:prevClip
+            aLabelView clippingBounds:prevClip
         ].
     ].