-----------------------------------------------------------------------------
| 145 | |
| 146 | //----------------------------------------------------------------------------- |
| 147 | ctkVTKConnection* |
| 148 | ctkVTKObjectEventsObserverPrivate::findConnection(const QString& id)const |
| 149 | { |
| 150 | foreach(ctkVTKConnection* connection, this->connections()) |
| 151 | { |
| 152 | if (connection->id() == id) |
| 153 | { |
| 154 | return connection; |
| 155 | } |
| 156 | } |
| 157 | return 0; |
| 158 | } |
| 159 | |
| 160 | //----------------------------------------------------------------------------- |
| 161 | ctkVTKConnection* |