- Timestamp:
- Dec 12, 2005, 6:13:31 PM (19 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/coord/null_parent.cc
r5300 r6070 33 33 this->setName("NullParent"); 34 34 35 while (!this->getNodesChildren().empty()) 36 delete this->getNodesChildren().front(); 37 35 38 this->setParentMode(PNODE_ALL); 36 39 NullParent::singletonRef = this; -
trunk/src/lib/coord/p_node.h
r6054 r6070 71 71 //! Patent Node is a Engine to calculate the position of an Object in respect to the position of its parent. 72 72 class PNode : virtual public BaseObject { 73 74 73 public: 75 74 PNode (); … … 137 136 void removeChild (PNode* child); 138 137 void removeNode(); 138 const std::list<PNode*>& getNodesChildren() const { return this->children; }; 139 139 140 140 /** @param parent the new parent of this node */ -
trunk/src/lib/lang/class_list.h
r5915 r6070 59 59 60 60 private: 61 61 62 static ClassList* getClassList(ClassID classID); 62 63 static ClassList* getClassList(const char* className); -
trunk/src/lib/sound/sound_engine.cc
r6004 r6070 290 290 // INITIALIZING THE DEVICE: 291 291 292 #if ndef AL_VERSION_1_1292 #ifdef AL_VERSION_1_1 293 293 ALubyte deviceName[] = 294 294 #else -
trunk/src/world_entities/space_ships/space_ship.cc
r6034 r6070 112 112 PRINTF(4)("SPACESHIP INIT\n"); 113 113 114 EventHandler::getInstance()->grabEvents( true);114 EventHandler::getInstance()->grabEvents(false); 115 115 116 116 bUp = bDown = bLeft = bRight = bAscend = bDescend = bRollL = bRollR = false;
Note: See TracChangeset
for help on using the changeset viewer.