Changeset 5929 for code/trunk/src/orxonox/interfaces
- Timestamp:
- Oct 12, 2009, 8:20:07 PM (15 years ago)
- Location:
- code/trunk
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/core5 (added) merged: 5768-5769,5772,5775-5780,5783-5785,5791-5792,5795-5807,5809-5814,5816-5832,5836-5839,5842-5853,5855-5899,5904-5922,5924-5928
- Property svn:mergeinfo changed
-
code/trunk/src/orxonox/interfaces/InterfaceCompilation.cc
r5781 r5929 34 34 35 35 #include "GametypeMessageListener.h" 36 #include "PawnListener.h"37 36 #include "PlayerTrigger.h" 38 37 #include "RadarListener.h" … … 51 50 { 52 51 RegisterRootObject(GametypeMessageListener); 53 }54 55 //----------------------------56 // PawnListener57 //----------------------------58 /**59 @brief Constructor for the PawnListener.60 */61 PawnListener::PawnListener()62 {63 RegisterRootObject(PawnListener);64 52 } 65 53 -
code/trunk/src/orxonox/interfaces/NotificationListener.h
r5781 r5929 45 45 namespace orxonox 46 46 { 47 class Notification; 48 47 49 class _OrxonoxExport NotificationListener : virtual public OrxonoxClass 48 50 { -
code/trunk/src/orxonox/interfaces/RadarViewable.cc
r5781 r5929 38 38 #include "worldentities/WorldEntity.h" 39 39 #include "Radar.h" 40 #include "Scene.h" 40 41 #include "overlays/Map.h" 41 42 … … 135 136 void RadarViewable::setRadarObjectDescription(const std::string& str) 136 137 { 137 Radar* radar = Radar::getInstancePtr();138 Radar* radar = this->getWorldEntity()->getScene()->getRadar(); 138 139 if (radar) 139 140 this->radarObjectShape_ = radar->addObjectDescription(str);
Note: See TracChangeset
for help on using the changeset viewer.