pharo-spec / Spec

Spec is a framework in Pharo for describing user interfaces.
MIT License
62 stars 63 forks source link

SpTablePresenter>>#initialize misses call for class-side #initializeSlots: #1637

Open riuttner opened 2 days ago

riuttner commented 2 days ago

When getting a fresh P13 image, it is not possible to run any menu action opening a table presenter, like configuring a breakpoint or showing Epicea code changes. When trying to do so, it is always the case that instance variable #columns is yet nil which fails because of a super initialize call already performing an #addColumn* call.

When changing method SpTablePresenter>>#initialize as follows, everything works:

initialize 

    self class initializeSlots: self.
    super initialize.
    <further code>

which I found as typical pattern in other Sp classes.

riuttner commented 2 days ago

Just noticed that this issue is related to https://github.com/pharo-project/pharo/issues/17316 ... and maybe the latest fix for this issue is somehow responsible for the current behaviour.