diff --git a/include/Nazara/Graphics/CullingList.inl b/include/Nazara/Graphics/CullingList.inl index 617ccfbfc..ecd414ea4 100644 --- a/include/Nazara/Graphics/CullingList.inl +++ b/include/Nazara/Graphics/CullingList.inl @@ -372,13 +372,13 @@ namespace Nz template CullingList::NoTestEntry::NoTestEntry() : - Entry() + Entry() { } template CullingList::NoTestEntry::NoTestEntry(CullingList* parent, std::size_t index) : - Entry(parent, index) + Entry(parent, index) { } @@ -386,40 +386,40 @@ namespace Nz template CullingList::SphereEntry::SphereEntry() : - Entry() + Entry() { } template CullingList::SphereEntry::SphereEntry(CullingList* parent, std::size_t index) : - Entry(parent, index) + Entry(parent, index) { } template void CullingList::SphereEntry::UpdateSphere(const Spheref& sphere) { - m_parent->NotifySphereUpdate(m_index, sphere); + this->m_parent->NotifySphereUpdate(this->m_index, sphere); } ////////////////////////////////////////////////////////////////////////// template CullingList::VolumeEntry::VolumeEntry() : - Entry() + Entry() { } template CullingList::VolumeEntry::VolumeEntry(CullingList* parent, std::size_t index) : - Entry(parent, index) + Entry(parent, index) { } template - void Nz::CullingList::VolumeEntry::UpdateVolume(const BoundingVolumef& volume) + void CullingList::VolumeEntry::UpdateVolume(const BoundingVolumef& volume) { - m_parent->NotifyVolumeUpdate(m_index, volume); + this->m_parent->NotifyVolumeUpdate(this->m_index, volume); } }