From Lewis Harmon, fixes to the Node and NodeCallback constructors.

This commit is contained in:
Robert Osfield
2004-10-01 22:05:40 +00:00
parent 5ecfb11e1b
commit 9af350eb41
3 changed files with 4 additions and 4 deletions

View File

@@ -29,8 +29,8 @@ class SG_EXPORT NodeCallback : public virtual Object {
NodeCallback(){}
NodeCallback(const NodeCallback&,const CopyOp&):
_nestedCallback(_nestedCallback) {}
NodeCallback(const NodeCallback& nc,const CopyOp&):
_nestedCallback(nc._nestedCallback) {}
META_Object(osg,NodeCallback);