the Ogre memory manager reports a memory leak for each creation of a ListboxTextItem. By default objects like these should be deleted automatically (auto_delete = 1).
Code: Select all
ListboxTextItem* item = new ListboxTextItem( (utf8*)"test");
// or even
ListboxTextItem* item = new ListboxTextItem( (utf8*)"test", 0, 0, 0, 1);
Am I using it the wrong way?
I'm using the Ogre renderer (you may have guessed...) and a current cvs version.
Bye,
mac
PS: Thanks for providing the great CEGUI!