Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 2, 2008, 12:53:39 AM (16 years ago)
Author:
landauf
Message:

removed some "extra qualifications" (only throws errors on newer versions of gcc)

Location:
code/trunk/src/orxonox/objects
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/objects/WeaponSystem.h

    r2098 r2104  
    5353            WeaponSet * getWeaponSetPointer(unsigned int n);
    5454
    55             inline void WeaponSystem::setParentSpaceShip(SpaceShip *parentSpaceShip)
     55            inline void setParentSpaceShip(SpaceShip *parentSpaceShip)
    5656                { parentSpaceShip_=parentSpaceShip; }
    5757            inline SpaceShip * getParentSpaceShip()
  • code/trunk/src/orxonox/objects/weaponSystem/WeaponSet.h

    r2098 r2104  
    4646            virtual ~WeaponSet();
    4747
    48             virtual void WeaponSet::XMLPort(Element& xmlelement, XMLPort::Mode mode);
     48            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
    4949
    50             void WeaponSet::attachWeaponSlot(WeaponSlot *wSlot);
    51             void WeaponSet::fire();
     50            void attachWeaponSlot(WeaponSlot *wSlot);
     51            void fire();
    5252            WeaponSlot * getWeaponSlotPointer(unsigned int n);
    5353
    54             inline void WeaponSet::setParentWeaponSystem(WeaponSystem *parentWeaponSystem)
     54            inline void setParentWeaponSystem(WeaponSystem *parentWeaponSystem)
    5555                { parentWeaponSystem_=parentWeaponSystem; }
    5656            inline WeaponSystem * getParentWeaponSystem()
  • code/trunk/src/orxonox/objects/weaponSystem/WeaponSlot.h

    r2097 r2104  
    5252            void fire();
    5353
    54             inline void WeaponSlot::setParentWeaponSet(WeaponSet *parentWeaponSet)
     54            inline void setParentWeaponSet(WeaponSet *parentWeaponSet)
    5555                { parentWeaponSet_=parentWeaponSet; }
    5656            inline WeaponSet * getParentWeaponSet()
Note: See TracChangeset for help on using the changeset viewer.