Changeset 1608 for code/trunk/src/core
- Timestamp:
- Jun 17, 2008, 3:33:03 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/BaseObject.h
r1558 r1608 66 66 67 67 /** @brief Sets the state of the objects activity. @param bActive True = active */ 68 inline void setActiv ity(bool bActive) { this->bActive_ = bActive; this->changedActivity(); }68 inline void setActive(bool bActive) { this->bActive_ = bActive; this->changedActivity(); } 69 69 /** @brief Returns the state of the objects activity. @return The state of the activity */ 70 70 inline bool isActive() const { return this->bActive_; } … … 73 73 74 74 /** @brief Sets the state of the objects visibility. @param bVisible True = visible */ 75 inline void setVisib ility(bool bVisible) { this->bVisible_ = bVisible; this->changedVisibility(); }75 inline void setVisible(bool bVisible) { this->bVisible_ = bVisible; this->changedVisibility(); } 76 76 /** @brief Returns the state of the objects visibility. @return The state of the visibility */ 77 77 inline bool isVisible() const { return this->bVisible_; }
Note: See TracChangeset
for help on using the changeset viewer.