Skip to content

Commit

Permalink
Fixed some warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
adeas31 committed Sep 30, 2016
1 parent 135dffb commit cb04267
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions OMEdit/OMEditGUI/Animation/Shapes.cpp
Expand Up @@ -63,8 +63,8 @@ ShapeObject::ShapeObject()
_width(ShapeObjectAttribute(0.1)),
_height(ShapeObjectAttribute(0.1)),
_specCoeff(ShapeObjectAttribute(0.7)),
_extra(ShapeObjectAttribute(0.0)),
_mat(osg::Matrix(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0))
_mat(osg::Matrix(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)),
_extra(ShapeObjectAttribute(0.0))
{
_r[0] = ShapeObjectAttribute(0.1);
_r[1] = ShapeObjectAttribute(0.1);
Expand Down
8 changes: 3 additions & 5 deletions OMEdit/OMEditGUI/Animation/Visualizer.cpp
Expand Up @@ -34,14 +34,12 @@

#include "Visualizer.h"


OMVisualBase::OMVisualBase(const std::string& modelFile, const std::string& path)
: _modelFile(modelFile),
_path(path),
_shapes(),
: _shapes(),
_modelFile(modelFile),
_path(path),
_xmlFileName(assembleXMLFileName(modelFile, path)),
_xmlDoc()

{
}

Expand Down

0 comments on commit cb04267

Please sign in to comment.