Convert NOTIFY to OSG_NOTIFY to avoid problems with polution of users apps with the NOTIFY macro

This commit is contained in:
Robert Osfield
2010-02-10 12:44:59 +00:00
parent 6ab51c7c47
commit f17e401347
42 changed files with 884 additions and 884 deletions

View File

@@ -20,7 +20,7 @@ using namespace osg;
View::View():
Object(true)
{
// NOTIFY(osg::NOTICE)<<"Constructing osg::View"<<std::endl;
// OSG_NOTIFY(osg::NOTICE)<<"Constructing osg::View"<<std::endl;
setLightingMode(HEADLIGHT);
@@ -52,7 +52,7 @@ View::View(const osg::View& view, const osg::CopyOp& copyop):
View::~View()
{
NOTIFY(osg::INFO)<<"Destructing osg::View"<<std::endl;
OSG_NOTIFY(osg::INFO)<<"Destructing osg::View"<<std::endl;
if (_camera.valid())
{
@@ -82,7 +82,7 @@ View::~View()
}
#endif
NOTIFY(osg::INFO)<<"Done destructing osg::View"<<std::endl;
OSG_NOTIFY(osg::INFO)<<"Done destructing osg::View"<<std::endl;
}
void View::take(osg::View& rhs)