| 103 | } |
| 104 | } |
| 105 | |
| 106 | String BaseNode::CreateUniqueNodeName( String const& desiredName ) const |
| 107 | { |
| 108 | String uniqueName = desiredName; |
| 109 | |
| 110 | if ( HasParentGraph() ) |
| 111 | { |
| 112 | uniqueName = GetParentGraph()->GetUniqueNameForRenameableNode( desiredName, this ); |
| 113 | } |
| 114 | |
| 115 | return uniqueName; |
| 116 | } |
nothing calls this directly
no test coverage detected