Change Geometry paramter name to lower case geometry.

This commit is contained in:
Robert Osfield
2002-07-26 12:49:19 +00:00
parent fe8d097cc0
commit 8901c42434

View File

@@ -22,7 +22,7 @@ class SG_EXPORT Geometry : public Drawable
Geometry();
/** Copy constructor using CopyOp to manage deep vs shallow copy.*/
Geometry(const Geometry& Geometry,const CopyOp& copyop=CopyOp::SHALLOW_COPY);
Geometry(const Geometry& geometry,const CopyOp& copyop=CopyOp::SHALLOW_COPY);
virtual Object* cloneType() const { return osgNew Geometry(); }
virtual Object* clone(const CopyOp& copyop) const { return osgNew Geometry(*this,copyop); }