| 758 | } |
| 759 | |
| 760 | void EditorWidgets::_unlinkWidget(MyGUI::Widget* _widget) |
| 761 | { |
| 762 | WidgetContainer* container = find(_widget); |
| 763 | if (container != nullptr) |
| 764 | { |
| 765 | bool result = unbind(container); |
| 766 | mWidgetsChanged = true; |
| 767 | |
| 768 | if (result) |
| 769 | WidgetSelectorManager::getInstance().setSelectedWidget(nullptr); |
| 770 | } |
| 771 | } |
| 772 | |
| 773 | MyGUI::MapString& EditorWidgets::getCodeGeneratorSettings() |
| 774 | { |
nothing calls this directly
no test coverage detected