Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5078 in orxonox.OLD for trunk/src/lib/graphics/text_engine.cc


Ignore:
Timestamp:
Aug 19, 2005, 5:02:38 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: Shell is running, but only in orxonox-world, not all-over
I do not know why this behaviour occurs, but maybe it is because of some errors in other pointers…
who knows

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/graphics/text_engine.cc

    r5077 r5078  
    813813/**
    814814 *  creates a new Text with a certain font.
    815    \see Font::Font
    816    \see Text::Text
     815   @see Font::Font
     816   @see Text::Text
    817817*/
    818818Text* TextEngine::createText(const char* fontFile, unsigned int fontSize, int textType, Uint8 r, Uint8 g, Uint8 b)
     
    831831
    832832  return new Text(tmpFont, TEXT_DYNAMIC);
    833 }
    834 
    835 /**
    836  *  deletes all the Text, and tries to delete all allocated fonts
    837 */
    838 void TextEngine::flush()
    839 {
    840   tIterator<BaseObject>* textIterator = ClassList::getList(CL_TEXT)->getIterator();
    841   Text* text = dynamic_cast<Text*>(textIterator->nextElement());
    842   while( text != NULL)
    843     {
    844       delete text;
    845       text = dynamic_cast<Text*>(textIterator->nextElement());
    846     }
    847   delete textIterator;
    848833}
    849834
Note: See TracChangeset for help on using the changeset viewer.