| 6977 | } |
| 6978 | |
| 6979 | void |
| 6980 | Node::runInputChangedCallback(int index) |
| 6981 | { |
| 6982 | std::string cb = getInputChangedCallback(); |
| 6983 | |
| 6984 | if ( !cb.empty() ) { |
| 6985 | _imp->runInputChangedCallback(index, cb); |
| 6986 | } |
| 6987 | } |
| 6988 | |
| 6989 | void |
| 6990 | Node::Implementation::runInputChangedCallback(int index, |
no test coverage detected