From a79fee019e3901edb8c7f3a2b5ba208a57c06a00 Mon Sep 17 00:00:00 2001 From: Dominik Wenger Date: Tue, 30 Mar 2010 17:43:49 +0000 Subject: Delete tts objects after use. Author: Delyan Kratunov Flyspray: FS#11155 part1 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25401 a1c6a512-1295-4272-9138-f99709370657 --- rbutil/rbutilqt/configure.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/rbutil/rbutilqt/configure.cpp b/rbutil/rbutilqt/configure.cpp index c57554a..78a836b 100644 --- a/rbutil/rbutilqt/configure.cpp +++ b/rbutil/rbutilqt/configure.cpp @@ -403,6 +403,9 @@ void Config::updateTtsState(int index) ui.configTTSstatus->setText(tr("Configuration INVALID")); ui.configTTSstatusimg->setPixmap(QPixmap(QString::fromUtf8(":/icons/dialog-error.png"))); } + + delete tts; /* Config objects are never deleted (in fact, they are leaked..), so we can't rely on QObject, + since that would delete the TTSBase instance on application exit*/ } void Config::updateEncState() @@ -699,6 +702,8 @@ void Config::configTts() EncTtsCfgGui gui(this,tts,TTSBase::getTTSName(ui.comboTts->itemData(index).toString())); gui.exec(); updateTtsState(ui.comboTts->currentIndex()); + delete tts; /* Config objects are never deleted (in fact, they are leaked..), so we can't rely on QObject, + since that would delete the TTSBase instance on application exit*/ } void Config::testTts() @@ -745,6 +750,9 @@ void Config::testTts() #else QSound::play(filename); #endif + + delete tts; /* Config objects are never deleted (in fact, they are leaked..), so we can't rely on QObject, + since that would delete the TTSBase instance on application exit*/ } void Config::configEnc() -- cgit v1.1