# HG changeset patch # User mawalch # Date 1495657786 -7200 # Node ID 922a13554daef90cc33ee5fcb8de2985c02ada6d # Parent dab7c7bdcaa1bd7ea7fff449653e57421fb71278 #OTHER by mawalch Spelling fixes in selector names (mark old ones obsolete and redirect them). diff -r dab7c7bdcaa1 -r 922a13554dae GraphicsContext.st --- a/GraphicsContext.st Tue May 23 15:00:17 2017 +0200 +++ b/GraphicsContext.st Wed May 24 22:29:46 2017 +0200 @@ -1247,10 +1247,20 @@ ^ self subclassResponsibility ! -displayOpaqueString:aString from:index1 to:index2 x:x y:y maxWitdh:maxWidth +displayOpaqueString:aString from:index1 to:index2 x:x y:y maxWidth:maxWidth "draw part of a string with both fg and bg at x/y in current font" ^ self subclassResponsibility + + "Created: / 24-05-2017 / 22:07:48 / mawalch" +! + +displayOpaqueString:aString from:index1 to:index2 x:x y:y maxWitdh:maxWidth + + self obsoleteMethodWarning:'Bad spelling. Use #displayOpaqueString:from:to:x:y:maxWidth: instead.'. + ^ self displayOpaqueString:aString from:index1 to:index2 x:x y:y maxWidth:maxWidth + + "Modified: / 24-05-2017 / 22:11:46 / mawalch" ! displayPolygon:aPolygon