Re: AW: Calling code in parent's parent class

2019-12-03 Thread Eric Selje
Same. Code smell. On Tue, Dec 3, 2019 at 10:19 AM MB Software Solutions, LLC < mbsoftwaresoluti...@mbsoftwaresolutions.com> wrote: > I would agree that it seems kludgey. Worked for a "genius" last gig and > he used it and it was amazing to see it in action operate easily but my > spidey sense

Re: AW: Calling code in parent's parent class

2019-12-03 Thread MB Software Solutions, LLC
I would agree that it seems kludgey.  Worked for a "genius" last gig and he used it and it was amazing to see it in action operate easily but my spidey sense said "yeah, no...I don't like it." On 12/3/2019 11:10 AM, Jürgen Wondzinski wrote: Sounds a little bit like "bad design", but if life

AW: Calling code in parent's parent class

2019-12-03 Thread Jürgen Wondzinski
Sounds a little bit like "bad design", but if life demands such constructs You can always get the code from the upmost level by using the "QuatroDot" operator :: like class::MyMethod() If you would need one in between, then you need to do some clever IF branching in the beginning of each