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

@ -182,6 +182,7 @@ EXAMPLE_DIRS = \
osgsimplifier\
osgspacewarp\
osgspheresegment\
osgspotlight\
osgstereoimage\
osgteapot\
osgtesselate\
@ -197,7 +198,6 @@ EXAMPLE_DIRS = \
osgvolume\
osgwindows\
# osgspotlight\
ifeq ($(GDAL_INSTALLED),yes)

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);

View File

@ -36,7 +36,7 @@ Node::Node()
Node::Node(const Node& node,const CopyOp& copyop):
Object(node,copyop),
_bsphere(_bsphere),
_bsphere(node._bsphere),
_bsphere_computed(node._bsphere_computed),
_name(node._name),
_parents(), // leave empty as parentList is managed by Group.