From d6179e7eb5431b95c4840ec25de4ae97e7ea4d67 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 15 Feb 2010 11:36:05 +0000 Subject: [PATCH] Added osg:: qualifyer to OSG_NOTIFY macro --- include/osg/Notify | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osg/Notify b/include/osg/Notify index 09235a661..5b38d7ad6 100644 --- a/include/osg/Notify +++ b/include/osg/Notify @@ -79,7 +79,7 @@ extern OSG_EXPORT std::ostream& notify(const NotifySeverity severity); inline std::ostream& notify(void) { return notify(osg::INFO); } -#define OSG_NOTIFY(level) if (isNotifyEnabled(level)) osg::notify(level) +#define OSG_NOTIFY(level) if (osg::isNotifyEnabled(level)) osg::notify(level) #define OSG_FATAL OSG_NOTIFY(osg::FALTAL) #define OSG_WARN OSG_NOTIFY(osg::WARN) #define OSG_NOTICE OSG_NOTIFY(osg::NOTICE)