Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6070 in orxonox.OLD


Ignore:
Timestamp:
Dec 12, 2005, 6:13:31 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: suppression file and minor fixes

Location:
trunk
Files:
2 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/coord/null_parent.cc

    r5300 r6070  
    3333  this->setName("NullParent");
    3434
     35  while (!this->getNodesChildren().empty())
     36    delete this->getNodesChildren().front();
     37
    3538  this->setParentMode(PNODE_ALL);
    3639  NullParent::singletonRef = this;
  • trunk/src/lib/coord/p_node.h

    r6054 r6070  
    7171//! Patent Node is a Engine to calculate the position of an Object in respect to the position of its parent.
    7272class PNode : virtual public BaseObject {
    73 
    7473 public:
    7574  PNode ();
     
    137136  void removeChild (PNode* child);
    138137  void removeNode();
     138  const std::list<PNode*>& getNodesChildren() const { return this->children; };
    139139
    140140  /** @param parent the new parent of this node */
  • trunk/src/lib/lang/class_list.h

    r5915 r6070  
    5959
    6060  private:
     61
    6162    static ClassList*                     getClassList(ClassID classID);
    6263    static ClassList*                     getClassList(const char* className);
  • trunk/src/lib/sound/sound_engine.cc

    r6004 r6070  
    290290  // INITIALIZING THE DEVICE:
    291291
    292 #ifndef AL_VERSION_1_1
     292#ifdef AL_VERSION_1_1
    293293  ALubyte deviceName[] =
    294294#else
  • trunk/src/world_entities/space_ships/space_ship.cc

    r6034 r6070  
    112112  PRINTF(4)("SPACESHIP INIT\n");
    113113
    114   EventHandler::getInstance()->grabEvents(true);
     114  EventHandler::getInstance()->grabEvents(false);
    115115
    116116  bUp = bDown = bLeft = bRight = bAscend = bDescend = bRollL = bRollR = false;
Note: See TracChangeset for help on using the changeset viewer.