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:
Niels Martin Hansen 2009-06-07 23:15:02 +00:00
parent 1d945b9b3d
commit eae8edcd1f
1 changed files with 5 additions and 0 deletions

View File

@ -220,6 +220,11 @@ KanaTable::KanaTable() {
Insert(L"",L"\u30c4\u30a9",L"tso");
}
KanaTable::~KanaTable()
{
// Do nothing
}
//////////
// Insert