| 820 | } |
| 821 | |
| 822 | void UIStyle::addStructurallyVolatileWidgetFromParent() { |
| 823 | if ( mGlobalDefinition && mGlobalDefinition->isStructurallyVolatile() && mWidget->getParent() && |
| 824 | mWidget->getParent()->isWidget() && |
| 825 | mWidget->getParent()->asType<UIWidget>()->getUIStyle() ) { |
| 826 | mWidget->getParent()->asType<UIWidget>()->getUIStyle()->addStructurallyVolatileChild( |
| 827 | mWidget ); |
| 828 | } |
| 829 | } |
| 830 | |
| 831 | void UIStyle::removeStructurallyVolatileWidgetFromParent() { |
| 832 | if ( mGlobalDefinition && mGlobalDefinition->isStructurallyVolatile() && mWidget->getParent() && |
nothing calls this directly
no test coverage detected