From 617f6d458521d8e6df9e69cd86a71d48bafe0149 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 27 Aug 2004 16:19:05 +0000 Subject: [PATCH] Fix for OSX build. --- src/osgDB/FileUtils.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/osgDB/FileUtils.cpp b/src/osgDB/FileUtils.cpp index a93ad8b2a..a26ec3f98 100644 --- a/src/osgDB/FileUtils.cpp +++ b/src/osgDB/FileUtils.cpp @@ -558,7 +558,7 @@ std::string osgDB::findFileInDirectory(const std::string& fileName,const std::st } else { - notify( DEBUG_INFO ) << "Couldn't find the Application Bundle" << std::endl; + osg::notify( osg::DEBUG_INFO ) << "Couldn't find the Application Bundle" << std::endl; } // Next, check the User's Application Support folder @@ -583,7 +583,7 @@ std::string osgDB::findFileInDirectory(const std::string& fileName,const std::st } else { - notify( DEBUG_INFO ) << "Couldn't find the User's Application Support Path" << std::endl; + osg::notify( osg::DEBUG_INFO ) << "Couldn't find the User's Application Support Path" << std::endl; } // Next, check the Local System's Application Support Folder @@ -608,7 +608,7 @@ std::string osgDB::findFileInDirectory(const std::string& fileName,const std::st } else { - notify( DEBUG_INFO ) << "Couldn't find the Local System's Application Support Path" << std::endl; + osg::notify( osg::DEBUG_INFO ) << "Couldn't find the Local System's Application Support Path" << std::endl; } // Finally, check the Network Application Support Folder @@ -635,7 +635,7 @@ std::string osgDB::findFileInDirectory(const std::string& fileName,const std::st } else { - notify( DEBUG_INFO ) << "Couldn't find the Network Application Support Path" << std::endl; + osg::notify( osg::DEBUG_INFO ) << "Couldn't find the Network Application Support Path" << std::endl; } }