Re: [Pharo-users] Finding replacements for deprecated functions

2019-08-23 Thread Steve Quezadas
Ok, so with, for example, "SpecColumnLayout", how would I find the new
method selector to use?

On Mon, Aug 19, 2019 at 11:34 AM Cyril Ferlicot 
wrote:

>
>
> On Mon 19 Aug 2019 at 20:30, Steve Quezadas  wrote:
>
>> I am experimenting with smalltalk. Sometimes a function gets
>> deprecated and is crossed out. Is there a "smalltalk way" of finding
>> the equivalent replacement function?
>>
> Hello,
>
> Most of the time the deprecation explains what is the new way directly.
> If it’s a change in the API with an equivalent method, it will be the one
> called in the deprecated method that should now be called.
>
> For more complex cases, if you don’t know the equivalent I guess the
> easiest way is to ask the community on this ML.
> --
> Cyril Ferlicot
> https://ferlicot.fr
>


Re: [Pharo-users] Finding replacements for deprecated functions

2019-08-19 Thread Cyril Ferlicot
On Mon 19 Aug 2019 at 20:30, Steve Quezadas  wrote:

> I am experimenting with smalltalk. Sometimes a function gets
> deprecated and is crossed out. Is there a "smalltalk way" of finding
> the equivalent replacement function?
>
Hello,

Most of the time the deprecation explains what is the new way directly.
If it’s a change in the API with an equivalent method, it will be the one
called in the deprecated method that should now be called.

For more complex cases, if you don’t know the equivalent I guess the
easiest way is to ask the community on this ML.
-- 
Cyril Ferlicot
https://ferlicot.fr


[Pharo-users] Finding replacements for deprecated functions

2019-08-19 Thread Steve Quezadas
I am experimenting with smalltalk. Sometimes a function gets
deprecated and is crossed out. Is there a "smalltalk way" of finding
the equivalent replacement function?