krakjoe / ui

Cross platform UI development in PHP
Other
519 stars 39 forks source link

segfault on getParent call #15

Closed remicollet closed 7 years ago

remicollet commented 7 years ago
class ExtensionCombo extends Combo {

    protected function onSelected() {
        var_dump($this->getParent());
        }
}

I'm trying to get a backtrace... but no luck for now... (no display when run in gdb)

krakjoe commented 7 years ago

That's a flaw in getParent, I think you may have to know the class of the parent.

krakjoe commented 7 years ago

Added protected parent property on Controls, just like the controls property of Form or whatever, this should not be manipulated directly.

remicollet commented 7 years ago

I confirm, fix is OK.

Thanks.