From Lewis Harmon, fixes to the Node and NodeCallback constructors.
This commit is contained in:
parent
5ecfb11e1b
commit
9af350eb41
@ -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)
|
||||
|
@ -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);
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user