Bug in Browser>>messageIconHelpAt:

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

Bug in Browser>>messageIconHelpAt:

Stéphane Rollandin
Hello,

In trunk there is an error in Browser>>messageIconHelpAt:

the test

        self class showMessageIcons
                ifFalse: [^ nil].

should be

        self class showMessageIcons
                ifFalse: [^ ''].


Stef

Reply | Threaded
Open this post in threaded view
|

Re: Bug in Browser>>messageIconHelpAt:

Tobias Pape
Hi,

On 23.02.2016, at 18:05, Stéphane Rollandin <[hidden email]> wrote:

> Hello,
>
> In trunk there is an error in Browser>>messageIconHelpAt:
>
> the test
>
> self class showMessageIcons
> ifFalse: [^ nil].
>
> should be
>
> self class showMessageIcons
> ifFalse: [^ ''].
>

Thanks, I fixed that.
Best regards
        -Tobias