| 750 | } |
| 751 | |
| 752 | PartPane::Pointer PartStack::GetPaneFor(IPresentablePart::Pointer part) |
| 753 | { |
| 754 | if (part == 0 || part.Cast<PresentablePart>() == 0) |
| 755 | { |
| 756 | return PartPane::Pointer(nullptr); |
| 757 | } |
| 758 | |
| 759 | return part.Cast<PresentablePart>()->GetPane(); |
| 760 | } |
| 761 | |
| 762 | QWidget* PartStack::GetParent() |
| 763 | { |
no test coverage detected