|
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
|