Changeset 6176
- Timestamp:
- 02/13/07 23:22:35
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
OpenSceneGraph/trunk/src/osgPlugins/Inventor/ConvertFromInventor.cpp
r5809 r6176 1144 1144 ////////////////////////////////////////////////////////////////////// 1145 1145 void ConvertFromInventor::_setVRMLImageTexture(const SoVRMLImageTexture* vit, 1146 SoCallbackAction* action)1146 SoCallbackAction* /*action*/) 1147 1147 { 1148 1148 _hasVRMLImageTexture = true; OpenSceneGraph/trunk/src/osgPlugins/ive/Viewport.cpp
r5863 r6176 31 31 // Write Viewport's properties. 32 32 33 out->writeInt( x());34 out->writeInt( y());35 out->writeInt( width());36 out->writeInt( height());33 out->writeInt(static_cast<int>(x())); 34 out->writeInt(static_cast<int>(y())); 35 out->writeInt(static_cast<int>(width())); 36 out->writeInt(static_cast<int>(height())); 37 37 } 38 38
