Lukas, now I have another problem. I am not sure if it is OB latest code related, but I think so.
No, that was always the case.
If you take any class, suppose RBSemanticTest and go to its definition. Change it so that it extends from ProtoObject instead of TestCase. When you accept the code (save it), the browser goes directly to Browse ProtoObject, actually to :
ProtoObject subclass: #ProtoObject    instanceVariableNames: ''    classVariableNames: ''    poolDictionaries: ''    category: 'Kernel-Objects'. ProtoObject superclass: nil
Creating a subclass like this was never supported by the refactoring engine. You have to write it like: nil subclass: #ProtoObject    instanceVariableNames: ''    classVariableNames: ''    poolDictionaries: ''    category: 'Kernel-Objects' Lukas -- Lukas Renggli www.lukas-renggli.ch