NoteBookView.st
changeset 4688 b94c05246a80
parent 4687 ea7610678090
child 4759 4b58c1136d85
--- a/NoteBookView.st	Sun Dec 21 22:39:21 2014 +0100
+++ b/NoteBookView.st	Mon Dec 22 00:32:28 2014 +0100
@@ -2991,7 +2991,7 @@
         self hideButton:buttonPrev.
     ] ifFalse:[
         buttonPrev map.
-        nP := newTrans applyTo:(max @ max).
+        nP := newTrans transformPoint:(max @ max).
         max := isHorizontal ifTrue:[nP x] ifFalse:[nP y].
     ].
 
@@ -3014,7 +3014,7 @@
     xI     := self buttonWidth.
 
     trans notNil ifTrue:[ 
-        nP := trans applyTo:(xL @ 0).
+        nP := trans transformPoint:(xL @ 0).
         xL := nP x 
     ].
 
@@ -3053,7 +3053,7 @@
 
     trans notNil ifTrue:[
         pO := bounds origin.
-        xL := (trans applyTo:pO) x 
+        xL := (trans transformPoint:pO) x 
     ].
     minTop := self tabLeftMargin.
 
@@ -3783,10 +3783,10 @@
 !NoteBookView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/NoteBookView.st,v 1.189 2014-12-21 21:39:21 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/NoteBookView.st,v 1.190 2014-12-21 23:32:28 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg2/NoteBookView.st,v 1.189 2014-12-21 21:39:21 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/NoteBookView.st,v 1.190 2014-12-21 23:32:28 cg Exp $'
 ! !