Tutorial Documentation in Dolphin 6

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

Tutorial Documentation in Dolphin 6

Robert Kovacic
On the tutorial page "PersonalAccountShell: a Presenter for PersonalAccount"
I believe the line -

currentBalancePresenter model: (aPersonalAccount aspectValue:
#currentBalance) aspectTriggersUpdates.

should be -
 currentBalancePresenter model: ((aPersonalAccount aspectValue:
#currentBalance) aspectTriggers: #currentBalanceChanged) .


Also the line -

(#(editTransaction removeTransaction) includes: aCommandQuery command)
ifTrue: [ aCommandQuery enabled: self hasSelectedTransaction ]
should be -

(#(editTransaction removeTransaction) includes: aCommandQuery command)
  ifTrue: [ aCommandQuery isEnabled: self hasSelectedTransaction ].

Regards, Robert Kovacic


Reply | Threaded
Open this post in threaded view
|

Re: Tutorial Documentation in Dolphin 6

Andy Bower-3
Robert,

> On the tutorial page "PersonalAccountShell: a Presenter for
> PersonalAccount" I believe the line -
>
> currentBalancePresenter model: (aPersonalAccount aspectValue:
> #currentBalance) aspectTriggersUpdates.
>
> should be -
>  currentBalancePresenter model: ((aPersonalAccount aspectValue:
> #currentBalance) aspectTriggers: #currentBalanceChanged) .
>
>
> Also the line -
>
> (#(editTransaction removeTransaction) includes: aCommandQuery
> command) ifTrue: [ aCommandQuery enabled: self hasSelectedTransaction
> ] should be -
>
> (#(editTransaction removeTransaction) includes: aCommandQuery command)
>   ifTrue: [ aCommandQuery isEnabled: self hasSelectedTransaction ].

Thanks. This has been recorded as part of #2076 and will be fixed in
the next release.

Best regards,

--
Andy Bower
Dolphin Support
www.object-arts.com