From d2c235a52b097231aca32be8c93d189a730fd23c Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 14 Dec 2004 01:38:45 +0000 Subject: [PATCH] From Fredric Marmond, fix to gcc3.4 build --- include/osgIntrospection/Reflector | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/osgIntrospection/Reflector b/include/osgIntrospection/Reflector index e973ca66b..7013a93d6 100644 --- a/include/osgIntrospection/Reflector +++ b/include/osgIntrospection/Reflector @@ -245,7 +245,7 @@ namespace osgIntrospection pi->addAttribute(new PropertyTypeAttribute(typeof(VT))); } - addProperty(pi); + this->addProperty(pi); } }; @@ -326,7 +326,7 @@ namespace osgIntrospection pi->addAttribute(new PropertyTypeAttribute(typeof(VT))); } - addProperty(pi); + this->addProperty(pi); } }; @@ -371,7 +371,7 @@ namespace osgIntrospection typeid(typename T::first_type).before(typeid(PT1))) pi1->addAttribute(new PropertyTypeAttribute(typeof(PT1))); - addProperty(pi1); + this->addProperty(pi1); PropertyInfo *pi2 = new PropertyInfo(typeof(T), typeof(typename T::second_type), "second", 0, 0); pi2->addAttribute(new CustomPropertyGetAttribute(new Accessor(1))); @@ -381,7 +381,7 @@ namespace osgIntrospection typeid(typename T::second_type).before(typeid(PT2))) pi2->addAttribute(new PropertyTypeAttribute(typeof(PT2))); - addProperty(pi2); + this->addProperty(pi2); } };