fix for the rest of the VS2015 virtual inheritance warnings. Same as for issues as for the Operation class.
This commit is contained in:
parent
e8f103afc9
commit
abf34d2838
@ -21,8 +21,7 @@ CameraManipulator::CameraManipulator()
|
||||
|
||||
|
||||
CameraManipulator::CameraManipulator(const CameraManipulator& mm, const CopyOp& copyOp)
|
||||
: osg::Callback(mm, copyOp),
|
||||
inherited(mm, copyOp),
|
||||
: inherited(mm, copyOp),
|
||||
_intersectTraversalMask(mm._intersectTraversalMask),
|
||||
_autoComputeHomePosition(mm._autoComputeHomePosition),
|
||||
_homeEye(mm._homeEye),
|
||||
|
@ -48,18 +48,17 @@ StandardManipulator::StandardManipulator( int flags )
|
||||
|
||||
/// Constructor.
|
||||
StandardManipulator::StandardManipulator( const StandardManipulator& uim, const CopyOp& copyOp )
|
||||
: osg::Callback(uim, copyOp),
|
||||
inherited( uim, copyOp ),
|
||||
_thrown( uim._thrown ),
|
||||
_allowThrow( uim._allowThrow ),
|
||||
_mouseCenterX(0.0f), _mouseCenterY(0.0f),
|
||||
_ga_t1( dynamic_cast< GUIEventAdapter* >( copyOp( uim._ga_t1.get() ) ) ),
|
||||
_ga_t0( dynamic_cast< GUIEventAdapter* >( copyOp( uim._ga_t0.get() ) ) ),
|
||||
_delta_frame_time(0.01), _last_frame_time(0.0),
|
||||
_modelSize( uim._modelSize ),
|
||||
_verticalAxisFixed( uim._verticalAxisFixed ),
|
||||
_flags( uim._flags ),
|
||||
_relativeFlags( uim._relativeFlags )
|
||||
: inherited( uim, copyOp ),
|
||||
_thrown( uim._thrown ),
|
||||
_allowThrow( uim._allowThrow ),
|
||||
_mouseCenterX(0.0f), _mouseCenterY(0.0f),
|
||||
_ga_t1( dynamic_cast< GUIEventAdapter* >( copyOp( uim._ga_t1.get() ) ) ),
|
||||
_ga_t0( dynamic_cast< GUIEventAdapter* >( copyOp( uim._ga_t0.get() ) ) ),
|
||||
_delta_frame_time(0.01), _last_frame_time(0.0),
|
||||
_modelSize( uim._modelSize ),
|
||||
_verticalAxisFixed( uim._verticalAxisFixed ),
|
||||
_flags( uim._flags ),
|
||||
_relativeFlags( uim._relativeFlags )
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user