| 222 | } |
| 223 | |
| 224 | void GraphFunction::removeDataInput(size_t idx) { |
| 225 | // invalidate the cache |
| 226 | module().updateLastEditTime(); |
| 227 | |
| 228 | if (idx < mDataInputs.size()) { mDataInputs.erase(mDataInputs.begin() + idx); } |
| 229 | updateEntries(); |
| 230 | } |
| 231 | |
| 232 | void GraphFunction::renameDataInput(size_t idx, std::string newName) { |
| 233 | // invalidate the cache |
nothing calls this directly
no test coverage detected