| 106 | } |
| 107 | |
| 108 | void DataListBaseControl::commandRenameData(const MyGUI::UString& _commandName, bool& _result) |
| 109 | { |
| 110 | if (!checkCommand(_result)) |
| 111 | return; |
| 112 | |
| 113 | if (mListBoxControl != nullptr) |
| 114 | mListBoxControl->OnRenameData(); |
| 115 | |
| 116 | _result = true; |
| 117 | } |
| 118 | |
| 119 | void DataListBaseControl::setDataInfo( |
| 120 | std::string_view _parentType, |
nothing calls this directly
no test coverage detected