The Trunk: MorphicExtras-mt.162.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: MorphicExtras-mt.162.mcz

commits-2
Marcel Taeumel uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-mt.162.mcz

==================== Summary ====================

Name: MorphicExtras-mt.162
Author: mt
Time: 1 May 2015, 2:28:34.974 pm
UUID: 784bd1ad-62dc-1b4d-89d6-5fa506031d2c
Ancestors: MorphicExtras-mt.161

Added from Morph package.

=============== Diff against MorphicExtras-mt.161 ===============

Item was added:
+ ----- Method: Morph>>nextOwnerPage (in category '*MorphicExtras') -----
+ nextOwnerPage
+ "Tell my container to advance to the next page"
+ | targ |
+ targ := self ownerThatIsA: BookMorph.
+ targ ifNotNil: [targ nextPage]!

Item was added:
+ ----- Method: Morph>>previousOwnerPage (in category '*MorphicExtras') -----
+ previousOwnerPage
+ "Tell my container to advance to the previous page"
+ | targ |
+ targ := self ownerThatIsA: BookMorph.
+ targ ifNotNil: [targ previousPage]!