| 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 | { |
no test coverage detected