MCPcopy Create free account
hub / github.com/MyGUI/mygui / loadIgnoreParameters

Method loadIgnoreParameters

Tools/LayoutEditor/EditorWidgets.cpp:676–687  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

674 }
675
676 void EditorWidgets::loadIgnoreParameters(
677 MyGUI::xml::ElementPtr _node,
678 std::string_view /*_file*/,
679 MyGUI::Version /*_version*/)
680 {
681 MyGUI::xml::ElementEnumerator parameter = _node->getElementEnumerator();
682 while (parameter.next("Parameter"))
683 {
684 std::string_view name = parameter->findAttribute("key");
685 mIgnoreParameters.emplace_back(name);
686 }
687 }
688
689 void EditorWidgets::notifyFrameStarted(float _time)
690 {

Callers

nothing calls this directly

Calls 3

getElementEnumeratorMethod · 0.80
findAttributeMethod · 0.80
nextMethod · 0.45

Tested by

no test coverage detected