Yes, I need it for a std::vector<> array.std::vector already knows how to dynamically grow when you add elements, the elements themselves don't need to be dynamically allocated.
My questino: is it a memoryleak possible, when I do that?Yes, everything that is allocated with new must be destroyed with delete. SFML never takes the ownership of user objects.