fixed uninitialized variable.

This commit is contained in:
Marco Di Benedetto 2009-05-29 18:33:19 +00:00
parent a4102993bb
commit 87d8294391
1 changed files with 2 additions and 2 deletions

View File

@ -114,10 +114,10 @@ class ColladaMesh : public vcg::tri::TriMesh< std::vector<ColladaVertex>, std
}
return indtx;
}
static int WedgeColorAttribute(ColladaMesh& m,const QStringList face,const QStringList wc,const QDomNode wcsrc,const int meshfaceind,const int faceind,const int component)
{
int indcl;
int indcl = -1;
if (!wcsrc.isNull())
{
indcl = face.at(faceind).toInt();