| 260 | } |
| 261 | |
| 262 | void GraphFunction::removeDataOutput(size_t idx) { |
| 263 | // invalidate the cache |
| 264 | module().updateLastEditTime(); |
| 265 | |
| 266 | if (idx < mDataOutputs.size()) { mDataOutputs.erase(mDataOutputs.begin() + idx); } |
| 267 | updateExits(); |
| 268 | } |
| 269 | |
| 270 | void GraphFunction::renameDataOutput(size_t idx, std::string newName) { |
| 271 | // invalidate the cache |
nothing calls this directly
no test coverage detected