Tutorial Documentation in Dolphin 6

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

Tutorial Documentation in Dolphin 6

Robert Kovacic
On the "PersonalMoney" tutorial page I believe -
    accounts := ListModel with: OrderedCollection new
should be -
    accounts := ListModel new.

On the "PersonalAccountTransactionDialog" tutorial page I believe -
    model: anAspectBuffer
should be -
    model: aPersonalAccounTransaction.

On the "PersonalAccountShell: a Presenter for Personal Money" tutorial page
I believe -
    We tack on the notification of #viewDestroyed
should be -
    We tack on the notification of "viewClosed.

Also the temporary variable "index" in editAccount is not referenced.

Regards, Robert Kovacic