File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ bool ConnectionManager::IsOutputSlotConnectedToInputSlot (const OutputSlotConstP
6868 return outputToInputConnections.HasConnection (outputSlot, inputSlot);
6969}
7070
71- bool ConnectionManager::CanConnectMoreOutputSlotToInputSlot (const InputSlotConstPtr& inputSlot) const
71+ bool ConnectionManager::CanConnectOutputSlotToInputSlot (const InputSlotConstPtr& inputSlot) const
7272{
7373 if (inputSlot == nullptr ) {
7474 return false ;
@@ -103,7 +103,7 @@ bool ConnectionManager::CanConnectOutputSlotToInputSlot (const OutputSlotConstPt
103103 return false ;
104104 }
105105
106- if (!CanConnectMoreOutputSlotToInputSlot (inputSlot)) {
106+ if (!CanConnectOutputSlotToInputSlot (inputSlot)) {
107107 return false ;
108108 }
109109
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ class ConnectionManager
2929 void EnumerateConnectedInputSlots (const OutputSlotConstPtr& outputSlot, const std::function<void (const InputSlotConstPtr&)>& processor) const ;
3030
3131 bool IsOutputSlotConnectedToInputSlot (const OutputSlotConstPtr& outputSlot, const InputSlotConstPtr& inputSlot) const ;
32- bool CanConnectMoreOutputSlotToInputSlot (const InputSlotConstPtr& inputSlot) const ;
32+ bool CanConnectOutputSlotToInputSlot (const InputSlotConstPtr& inputSlot) const ;
3333 bool CanConnectOutputSlotToInputSlot (const OutputSlotConstPtr& outputSlot, const InputSlotConstPtr& inputSlot) const ;
3434 bool ConnectOutputSlotToInputSlot (const OutputSlotConstPtr& outputSlot, const InputSlotConstPtr& inputSlot);
3535
Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ bool NodeManager::IsOutputSlotConnectedToInputSlot (const OutputSlotConstPtr& ou
212212
213213bool NodeManager::CanConnectMoreOutputSlotToInputSlot (const InputSlotConstPtr& inputSlot) const
214214{
215- return connectionManager.CanConnectMoreOutputSlotToInputSlot (inputSlot);
215+ return connectionManager.CanConnectOutputSlotToInputSlot (inputSlot);
216216}
217217
218218bool NodeManager::CanConnectOutputSlotToInputSlot (const OutputSlotConstPtr& outputSlot, const InputSlotConstPtr& inputSlot) const
You can’t perform that action at this time.
0 commit comments