changed: #computeShape rel5_4_6
authorClaus Gittinger <cg@exept.de>
Tue, 17 Nov 2009 14:30:13 +0100
changeset 2802 dc8cd7d0f0fd
parent 2801 8a9366e45bf3
child 2803 b1f0edb9c078
changed: #computeShape
ActiveHelpView.st
--- a/ActiveHelpView.st	Tue Nov 17 12:22:46 2009 +0100
+++ b/ActiveHelpView.st	Tue Nov 17 14:30:13 2009 +0100
@@ -231,14 +231,14 @@
             bw := 4.
             offs := 0.
 
-            self corner x > device usableExtent x ifTrue:[
+            self corner x > device usableWidth ifTrue:[
                 mirrorH := true.
                 self origin:((self origin x - w) @ (self origin y)).
                 offs := bw * 2.
             ] ifFalse:[
                 mirrorH := false
             ].
-            self corner y > device usableExtent y ifTrue:[
+            self corner y > device usableHeight ifTrue:[
                 mirrorV := true.
                 self origin:(self origin x @ (self origin y - h)).
             ] ifFalse:[
@@ -358,9 +358,9 @@
 !ActiveHelpView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/ActiveHelpView.st,v 1.31 2009-10-24 14:34:43 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/ActiveHelpView.st,v 1.32 2009-11-17 13:30:13 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview2/ActiveHelpView.st,v 1.31 2009-10-24 14:34:43 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/ActiveHelpView.st,v 1.32 2009-11-17 13:30:13 cg Exp $'
 ! !