Changeset 7892 in orxonox.OLD for branches/gui/src/lib/graphics/text_engine
- Timestamp:
- May 27, 2006, 3:47:27 AM (19 years ago)
- Location:
- branches/gui/src/lib/graphics/text_engine
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/lib/graphics/text_engine/text.cc
r7889 r7892 136 136 return this->text; 137 137 } 138 139 /** 140 * @brief removes char characters from the Text. 141 */ 142 void Text::removeCharacters(unsigned int chars) 143 { 144 this->text.resize(this->text.size()-chars); 145 } 146 138 147 139 148 /** -
branches/gui/src/lib/graphics/text_engine/text.h
r7753 r7892 38 38 void append(const std::string& appendText); 39 39 const std::string& operator<<(const std::string& appendText); 40 void removeCharacters(unsigned int chars); 40 41 41 42 /// SETUP
Note: See TracChangeset
for help on using the changeset viewer.