Fixed a memory leak that would occur when using the visual typesetting tools

Originally committed to SVN as r3041.
This commit is contained in:
harukalover 2009-06-10 03:32:18 +00:00
parent eb27337349
commit 10b8a6253b

View file

@ -1255,6 +1255,7 @@ void SubsEditBox::SetOverride (wxString tagname,wxString preValue,int forcePos,b
wxString name = override->Tags.at(i)->Name;
if (insertTags.Index(name) != wxNOT_FOUND || removeTag == name) {
shift -= override->Tags.at(i)->ToString().Length();
delete override->Tags.at(i);
override->Tags.erase(override->Tags.begin() + i);
i--;
}