MCPcopy Create free account
hub / github.com/MyGUI/mygui / isConnecting

Method isConnecting

UnitTests/UnitTest_GraphView/BaseGraphView.h:82–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80 }
81
82 bool isConnecting(BaseGraphConnection* _from, BaseGraphConnection* _to) const
83 {
84 EnumeratorConnection conn = _from->getConnectionEnumerator();
85 while (conn.next())
86 {
87 if (conn.current() == _to)
88 {
89 return true;
90 }
91 }
92 return false;
93 }
94
95 MyGUI::Widget* getClient() const
96 {

Callers 1

requestConnectPointFunction · 0.80

Calls 3

nextMethod · 0.45
currentMethod · 0.45

Tested by

no test coverage detected