From 1eab86a853fd37fca665fb0ebdf2155e8aea147c Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 28 May 2010 16:54:45 +0000 Subject: [PATCH] Converted osg::notify to OSG_INFO etc. --- src/osgPlugins/qfont/ReaderQFont.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgPlugins/qfont/ReaderQFont.cpp b/src/osgPlugins/qfont/ReaderQFont.cpp index d3c97f5e0..45382d91a 100644 --- a/src/osgPlugins/qfont/ReaderQFont.cpp +++ b/src/osgPlugins/qfont/ReaderQFont.cpp @@ -40,13 +40,13 @@ class ReaderQFont : public osgDB::ReaderWriter if (!QApplication::instance()) { - osg::notify(osg::WARN) << "Trying to load qfont \"" << file << "\" from within a non qt application!" << std::endl; + OSG_WARN << "Trying to load qfont \"" << file << "\" from within a non qt application!" << std::endl; return ReadResult::FILE_NOT_FOUND; } if (!QFontDatabase::supportsThreadedFontRendering() && QApplication::instance()->thread() != QThread::currentThread()) { - osg::notify(osg::WARN) << "Trying to load qfont \"" << file << "\" from a non gui thread " + OSG_WARN << "Trying to load qfont \"" << file << "\" from a non gui thread " "within qt application without threaded font rendering!" << std::endl; return ReadResult::FILE_NOT_FOUND; }