| 714 | } |
| 715 | |
| 716 | void EditorWidgets::loadSkinReplace( |
| 717 | MyGUI::xml::ElementPtr _node, |
| 718 | std::string_view /*_file*/, |
| 719 | MyGUI::Version /*_version*/) |
| 720 | { |
| 721 | MyGUI::xml::ElementEnumerator node = _node->getElementEnumerator(); |
| 722 | while (node.next("Skin")) |
| 723 | { |
| 724 | MyGUI::mapSet(mSkinReplaces, node->findAttribute("key"), node->getContent()); |
| 725 | } |
| 726 | } |
| 727 | |
| 728 | bool EditorWidgets::isSkinExist(std::string_view _skinName) |
| 729 | { |
nothing calls this directly
no test coverage detected