Changeset 10768 for code/branches/cpp11_v2/src/orxonox/graphics
- Timestamp:
- Nov 6, 2015, 10:54:34 PM (10 years ago)
- Location:
- code/branches/cpp11_v2/src/orxonox/graphics
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/orxonox/graphics/Backlight.cc
r9667 r10768 51 51 RegisterObject(Backlight); 52 52 53 this->ribbonTrail_ = 0;54 this->ribbonTrailNode_ = 0;53 this->ribbonTrail_ = nullptr; 54 this->ribbonTrailNode_ = nullptr; 55 55 56 56 this->width_ = 0; -
code/branches/cpp11_v2/src/orxonox/graphics/Light.cc
r9667 r10768 53 53 RegisterObject(Light); 54 54 55 this->light_ = 0;55 this->light_ = nullptr; 56 56 this->diffuse_ = ColourValue::White; 57 57 this->specular_ = ColourValue::White; -
code/branches/cpp11_v2/src/orxonox/graphics/Model.cc
r10765 r10768 134 134 Level* level = this->getLevel(); 135 135 136 assert( level != 0);136 assert( level != nullptr ); 137 137 138 138 MeshLodInformation* lodInfo = level->getLodInfo(this->meshSrc_); -
code/branches/cpp11_v2/src/orxonox/graphics/ParticleEmitter.cc
r9950 r10768 52 52 ThrowException(AbortLoading, "Can't create ParticleEmitter, no scene or no scene manager given."); 53 53 54 this->particles_ = 0;54 this->particles_ = nullptr; 55 55 this->LOD_ = LODParticle::Normal; 56 56 … … 102 102 { 103 103 delete this->particles_; 104 this->particles_ = 0;104 this->particles_ = nullptr; 105 105 } 106 106
Note: See TracChangeset
for help on using the changeset viewer.