Changeset 7893 in orxonox.OLD for branches/gui/src/lib/graphics
- Timestamp:
- May 27, 2006, 4:07:35 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
r7892 r7893 126 126 this->setupTextWidth(); 127 127 } 128 129 /** 130 * @brief appends one Character to the String. 131 */ 132 void Text::appendCharacter(char character) 133 { 134 this->text += character; 135 this->setupTextWidth(); 136 } 137 128 138 129 139 /** -
branches/gui/src/lib/graphics/text_engine/text.h
r7892 r7893 37 37 void setText(const std::string& text); 38 38 void append(const std::string& appendText); 39 void appendCharacter(char character); 39 40 const std::string& operator<<(const std::string& appendText); 40 41 void removeCharacters(unsigned int chars);
Note: See TracChangeset
for help on using the changeset viewer.