uninitialized variables-verve

This commit is contained in:
AzaezelX 2020-05-11 15:53:14 -05:00
parent 43259e29c1
commit 36cbc4c962
3 changed files with 12 additions and 7 deletions

View file

@ -199,7 +199,7 @@ private:
public:
VPathEditorEditPathAction( const UTF8 *pName = "" ) :
UndoAction( pName )
UndoAction( pName ), mEditor(NULL), mPath(NULL)
{
// Void.
};
@ -218,9 +218,11 @@ private:
public:
VPathEditorEditNodeAction( const UTF8 *pName = "" ) :
UndoAction( pName )
UndoAction( pName ), mEditor(NULL), mPath(NULL), mNodeIndex(0), mNodeWeight(0.0f)
{
// Void.
mNodeOrientation.Type = VPathNode::k_OrientationFree;
mNodeOrientation.Point = Point3F(0.0f, 0.0f, 0.0f);
};
VPathEditor *mEditor;
@ -290,4 +292,4 @@ namespace Utility
//-----------------------------------------------------------------------------
#endif // _VT_VPATHEDITOR_H_
#endif // _VT_VPATHEDITOR_H_