forked from mia/Aegisub
The KanaTable was missing a destructor. Nobody noticed because the old kanji timer code created but never deleted KanaTable objects on the heap... yes that was a memory leak that'll also get plugged by the rewrite of the kanji timer.
Updates #847. Originally committed to SVN as r3030.
This commit is contained in:
parent
1d945b9b3d
commit
eae8edcd1f
1 changed files with 5 additions and 0 deletions
|
@ -220,6 +220,11 @@ KanaTable::KanaTable() {
|
||||||
Insert(L"",L"\u30c4\u30a9",L"tso");
|
Insert(L"",L"\u30c4\u30a9",L"tso");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
KanaTable::~KanaTable()
|
||||||
|
{
|
||||||
|
// Do nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//////////
|
//////////
|
||||||
// Insert
|
// Insert
|
||||||
|
|
Loading…
Reference in a new issue