Changeset 8594 for code/branches/presentation
- Timestamp:
- May 26, 2011, 1:57:01 PM (13 years ago)
- Location:
- code/branches/presentation/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation/src/libraries/core/Identifier.h
r8351 r8594 119 119 120 120 /// Returns the network ID to identify a class through the network. 121 inline constuint32_t getNetworkID() const { return this->networkID_; }121 inline uint32_t getNetworkID() const { return this->networkID_; } 122 122 void setNetworkID(uint32_t id); 123 123 -
code/branches/presentation/src/libraries/util/Exception.h
r7401 r8594 110 110 virtual const std::string& getDescription() const { return this->description_; } 111 111 //! Returns the line number on which the exception occurred. 112 virtual const unsigned int getLineNumber()const { return this->lineNumber_; }112 virtual unsigned int getLineNumber() const { return this->lineNumber_; } 113 113 //! Returns the function in which the exception occurred. 114 114 virtual const std::string& getFunctionName() const { return this->functionName_; } -
code/branches/presentation/src/modules/overlays/hud/HUDNavigation.cc
r7801 r8594 342 342 text->hide(); 343 343 344 ObjectInfo tempStruct = {panel, text, false };344 ObjectInfo tempStruct = {panel, text, false /*, TODO: initialize wasOutOfView_ */}; 345 345 activeObjectList_[object] = tempStruct; 346 346 -
code/branches/presentation/src/modules/pickup/PickupManager.h
r7547 r8594 148 148 @return Returns true if the input Pickupable is still valid, false if not. 149 149 */ 150 constbool isValidPickup(uint32_t pickup) const150 bool isValidPickup(uint32_t pickup) const 151 151 { return this->pickups_.find(pickup) != this->pickups_.end(); } 152 152 // tolua_end -
code/branches/presentation/src/orxonox/worldentities/pawns/SpaceShip.h
r8589 r8594 81 81 inline void oneEngineTickDone() 82 82 { this->engineTicksNotDone--; } 83 inline constbool hasEngineTicksRemaining()83 inline bool hasEngineTicksRemaining() 84 84 { return (this->engineTicksNotDone>0); } 85 85
Note: See TracChangeset
for help on using the changeset viewer.