Re: [Pharo-dev] Maybe fixed?

2013-09-17 Thread Friedrich Dominicus
Marcus Denker marcus.den...@inria.fr writes:

 On Sep 16, 2013, at 11:12 AM, Friedrich Dominicus
 fr...@q-software-solutions.de wrote:

 Marcus Denker marcus.den...@inria.fr writes:
 
 On Sep 13, 2013, at 8:50 AM, Friedrich Dominicus
 fr...@q-software-solutions.de wrote:
 
 I guess I found a bug in BrowseropenAsMorphClassEditing
 
 I can not find this method in Pharo3 or Pharo2.
 
 Which version are you using?
 Pharo 2.0 with Nautilus. 
 
 
 
 
 In general, we should remove the old Browser soon. It is not used.
 I don't know but it seemed to be used here…
 
 This is really strange: there are no references to class Browser,

 both

 Smalltalk tools browser
 SystemBrowser default

 return Nautilus.

 Do you have an idea in which situation this happens?
Sorry, I have tried to load some software into the image. I think it was
BabyMock. There is a visual representation of the calles running and in
the top you can click on a rectangle. I clicked on one of the rectangles
and the MNU showed. I checked the code and have seen that asLayoutFrame
was missing, I added it and the stuff runs.

Regards
Friedrich



Re: [Pharo-dev] Maybe fixed?

2013-09-17 Thread Marcus Denker

On Sep 17, 2013, at 8:39 AM, Friedrich Dominicus 
fr...@q-software-solutions.de wrote:
 
 
 Do you have an idea in which situation this happens?
 Sorry, I have tried to load some software into the image. I think it was
 BabyMock. There is a visual representation of the calles running and in
 the top you can click on a rectangle. I clicked on one of the rectangles
 and the MNU showed. I checked the code and have seen that asLayoutFrame
 was missing, I added it and the stuff runs.

Ok, I checked:

- fixed already in Pharo3 (we really need to remove the old Browser…)

- not yet fixed in Pharo2. I added an issue there to fix it.

Marcus


signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [Pharo-dev] Maybe fixed?

2013-09-16 Thread Friedrich Dominicus
Marcus Denker marcus.den...@inria.fr writes:

 On Sep 13, 2013, at 8:50 AM, Friedrich Dominicus
 fr...@q-software-solutions.de wrote:

 I guess I found a bug in BrowseropenAsMorphClassEditing

 I can not find this method in Pharo3 or Pharo2.

 Which version are you using?
Pharo 2.0 with Nautilus. 




 In general, we should remove the old Browser soon. It is not used.
I don't know but it seemed to be used here...

Regards
Friedrich





Re: [Pharo-dev] Maybe fixed?

2013-09-16 Thread Marcus Denker

On Sep 16, 2013, at 11:12 AM, Friedrich Dominicus 
fr...@q-software-solutions.de wrote:

 Marcus Denker marcus.den...@inria.fr writes:
 
 On Sep 13, 2013, at 8:50 AM, Friedrich Dominicus
 fr...@q-software-solutions.de wrote:
 
 I guess I found a bug in BrowseropenAsMorphClassEditing
 
 I can not find this method in Pharo3 or Pharo2.
 
 Which version are you using?
 Pharo 2.0 with Nautilus. 
 
 
 
 
 In general, we should remove the old Browser soon. It is not used.
 I don't know but it seemed to be used here…
 

I will check… maybe somewhere in 2.0 there are references to the Browser left.

Marcus




signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [Pharo-dev] Maybe fixed?

2013-09-16 Thread Marcus Denker

On Sep 16, 2013, at 11:12 AM, Friedrich Dominicus 
fr...@q-software-solutions.de wrote:

 Marcus Denker marcus.den...@inria.fr writes:
 
 On Sep 13, 2013, at 8:50 AM, Friedrich Dominicus
 fr...@q-software-solutions.de wrote:
 
 I guess I found a bug in BrowseropenAsMorphClassEditing
 
 I can not find this method in Pharo3 or Pharo2.
 
 Which version are you using?
 Pharo 2.0 with Nautilus. 
 
 
 
 
 In general, we should remove the old Browser soon. It is not used.
 I don't know but it seemed to be used here…
 
This is really strange: there are no references to class Browser,

both

Smalltalk tools browser
SystemBrowser default

return Nautilus.

Do you have an idea in which situation this happens?


We can add the  fix to openAsMorphClassEditing:  (the missing asLayoutFrame), 
but the real problem
is that this method should not be called normally.

(for the asLayoutFrame I will open an issue)

Marcus




signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [Pharo-dev] Maybe fixed?

2013-09-14 Thread Marcus Denker

On Sep 13, 2013, at 8:50 AM, Friedrich Dominicus 
fr...@q-software-solutions.de wrote:

 I guess I found a bug in BrowseropenAsMorphClassEditing

I can not find this method in Pharo3 or Pharo2.

Which version are you using?

In general, we should remove the old Browser soon. It is not used.

Marcus



signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [Pharo-dev] Maybe fixed?

2013-09-14 Thread Friedrich Dominicus
Benjamin benjamin.vanryseghem.ph...@gmail.com writes:

 You should:
 1) Create an account here: http://bugs.pharo.org/issues/register
Tried to register but did not get anything back from this page.





 2) Log in here: https://pharo.fogbugz.com/
Well 1 failed so 2 could not be tried..

Regards
Friedrich




[Pharo-dev] Maybe fixed?

2013-09-13 Thread Friedrich Dominicus
I guess I found a bug in BrowseropenAsMorphClassEditing
in my Version there was
window 
addMorph: self buildMorphicMessageList
fullFrame: ((0.5@0 corner: 1.0@hSepFrac) topOffset: 
switchHeight).

I had to change it to:
window 
addMorph: self buildMorphicMessageList
fullFrame: ((0.5@0 corner: 1.0@hSepFrac) asLayoutFrame 
topOffset: switchHeight).

Otherwise I get an MNU for Rectangle topOffset:


I guess I've to figure out on how to send proper patches to this mailing
list.

Regards
Friedrich