fix trasformation->transformation

This commit is contained in:
luz paz 2021-07-08 08:10:16 -04:00 committed by manongjohn
parent 3ab6a92c6e
commit f4e8ae7f10
2 changed files with 6 additions and 6 deletions

View file

@ -204,7 +204,7 @@ public:
//=====================================================================
/*!
All the geometric tags that contains curve informations are
All the geometric tags that contains curve information are
instantiations of this template class
*/
@ -319,7 +319,7 @@ public:
StyleTag();
StyleTag(int id, USHORT pagePaletteindex, int m_numParams,
TStyleParam *m_params);
StyleTag(const StyleTag &trasformationTag);
StyleTag(const StyleTag &transformationTag);
~StyleTag();
};
@ -333,7 +333,7 @@ public:
GeometricTransformationTag();
GeometricTransformationTag(const TAffine &affine, PliGeometricTag *m_object);
GeometricTransformationTag(
const GeometricTransformationTag &trasformationTag);
const GeometricTransformationTag &transformationTag);
~GeometricTransformationTag();
};

View file

@ -395,10 +395,10 @@ GeometricTransformationTag::GeometricTransformationTag()
/*=====================================================================*/
GeometricTransformationTag::GeometricTransformationTag(
const GeometricTransformationTag &trasformationTag)
const GeometricTransformationTag &transformationTag)
: PliGeometricTag(PliTag::GEOMETRIC_TRANSFORMATION_GOBJ)
, m_affine(trasformationTag.m_affine)
, m_object(trasformationTag.m_object) {}
, m_affine(transformationTag.m_affine)
, m_object(transformationTag.m_object) {}
/*=====================================================================*/