From Lionel Lagarde, "here is a correction on

osgVolume/Property
  added OSGVOLUME_EXPORT to PropertyAdjustmentCallback

osgVolume/VolumeTile.cpp
  in copy constructor, removed ';' on if (volumeTile.getVolumeTechnique())"
This commit is contained in:
Robert Osfield 2009-01-23 09:24:34 +00:00
parent 33db349781
commit c17d85c241
2 changed files with 2 additions and 2 deletions

View File

@ -350,7 +350,7 @@ class OSGVOLUME_EXPORT CollectPropertiesVisitor : public osgVolume::PropertyVisi
};
class PropertyAdjustmentCallback : public osgGA::GUIEventHandler, public osg::StateSet::Callback
class OSGVOLUME_EXPORT PropertyAdjustmentCallback : public osgGA::GUIEventHandler, public osg::StateSet::Callback
{
public:

View File

@ -37,7 +37,7 @@ VolumeTile::VolumeTile(const VolumeTile& volumeTile,const osg::CopyOp& copyop):
_hasBeenTraversal(false),
_layer(volumeTile._layer)
{
if (volumeTile.getVolumeTechnique()) ;
if (volumeTile.getVolumeTechnique())
{
setVolumeTechnique(osg::clone(volumeTile.getVolumeTechnique()));
}