Hi,
When subclassing Tizen native classes based on controls, in example Panel. When I reimplement method OnInitializing() do I must to call the base implementation from Panel ?
MyClass::MyClass() : public Tizen::Ui::Controls::Panel { } MyClass::OnInitializing() { Panel::OnInitializing(); // this is needed ? }
Is there any pattern: always call base implementation of all virtual methods beginning with On*, or there is no need to call them ?
Of course this is question only for the base Tizen base classes.