- Timestamp:
- 05/05/08 07:12:19 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/Contrib/Manipulators/OSGManipulatorManager.cpp
r1168 r1198 83 83 if ( ! _maniC->getParents().empty() ) 84 84 { 85 Node Ptr maniN = dynamic_cast<NodePtr>(_maniC->getParents()[0]);85 Node *maniN = dynamic_cast<Node *>(_maniC->getParents()[0]); 86 86 87 _maniC = N ullFC;87 _maniC = NULL; 88 88 89 89 switch (type) … … 116 116 } 117 117 118 void ManipulatorManager::setTarget( const NodePtr &value)118 void ManipulatorManager::setTarget(Node * const value) 119 119 { 120 120 _maniC->setTarget(value); … … 122 122 } 123 123 124 void ManipulatorManager::setViewport( const ViewportPtr &value)124 void ManipulatorManager::setViewport(Viewport * const value) 125 125 { 126 126 _maniC->setViewport(value); … … 153 153 } 154 154 155 bool ManipulatorManager::activate(Node Ptrn)155 bool ManipulatorManager::activate(Node *n) 156 156 { 157 157 if ( _maniC->hasSubHandle(n) )
