Changeset 1064
- Timestamp:
- 02/27/08 11:41:08 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork2/Source/System/NodeCores/Drawables/Geometry/Base/OSGGeoBuilder.cpp
r1039 r1064 111 111 GeoVectorPropertyPtr GeoBuilder::getProperty(UInt32 index) 112 112 { 113 GeoVectorProperty RefPtr att;113 GeoVectorPropertyInternalRefPtr att; 114 114 115 115 if(index >= _geo->getProperties().size() || … … 167 167 if(_geo->getTypes() == NullFC) 168 168 { 169 GeoIntegralProperty RefPtr t = GeoUInt8Property::create();169 GeoIntegralPropertyInternalRefPtr t = GeoUInt8Property::create(); 170 170 _geo->setTypes(t); 171 171 … … 178 178 if(_geo->getLengths() == NullFC) 179 179 { 180 GeoIntegralProperty RefPtr l = GeoUInt32Property::create();180 GeoIntegralPropertyInternalRefPtr l = GeoUInt32Property::create(); 181 181 _geo->setLengths(l); 182 182 } … … 194 194 if(_geo->getIndices() == NullFC) 195 195 { 196 GeoIntegralProperty RefPtr i = GeoUInt32Property::create();196 GeoIntegralPropertyInternalRefPtr i = GeoUInt32Property::create(); 197 197 _geo->setIndices(i); 198 198 }
