| 706 | } |
| 707 | |
| 708 | std::string_view EditorWidgets::getSkinReplace(std::string_view _skinName) |
| 709 | { |
| 710 | MyGUI::MapString::iterator item = mSkinReplaces.find(_skinName); |
| 711 | if (item != mSkinReplaces.end()) |
| 712 | return (*item).second; |
| 713 | return _skinName; |
| 714 | } |
| 715 | |
| 716 | void EditorWidgets::loadSkinReplace( |
| 717 | MyGUI::xml::ElementPtr _node, |
no test coverage detected