The Trunk: Morphic-mt.878.mcz

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

The Trunk: Morphic-mt.878.mcz

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

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

Name: Morphic-mt.878
Author: mt
Time: 15 April 2015, 5:16:58.485 pm
UUID: a105ff49-438b-7b4d-8898-0b0d8d8b7d3e
Ancestors: Morphic-mt.877

Avoid creating a symbol of colon-character, which confuses many tools out there... ;-)

=============== Diff against Morphic-mt.877 ===============

Item was changed:
  ----- Method: NewBalloonMorph>>move: (in category 'geometry') -----
  move: targetPoint
 
+ self perform: (self orientation, ':') asSymbol with: targetPoint.!
- self perform: (self orientation, #:) asSymbol with: targetPoint.!


Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: Morphic-mt.878.mcz

Tobias Pape

On 15.04.2015, at 15:17, [hidden email] wrote:

> Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
> http://source.squeak.org/trunk/Morphic-mt.878.mcz
>
> ==================== Summary ====================
>
> Name: Morphic-mt.878
> Author: mt
> Time: 15 April 2015, 5:16:58.485 pm
> UUID: a105ff49-438b-7b4d-8898-0b0d8d8b7d3e
> Ancestors: Morphic-mt.877
>
> Avoid creating a symbol of colon-character, which confuses many tools out there... ;-)
>
> =============== Diff against Morphic-mt.877 ===============
>
> Item was changed:
>  ----- Method: NewBalloonMorph>>move: (in category 'geometry') -----
>  move: targetPoint
>
> + self perform: (self orientation, ':') asSymbol with: targetPoint.!

what about

        self perform: self orientation asMutator with: targetPoint.

?

Best
        -Tobias
> - self perform: (self orientation, #:) asSymbol with: targetPoint.!
>
>