summaryrefslogtreecommitdiffstats
path: root/kttsd/kttsd/speaker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kttsd/kttsd/speaker.cpp')
-rw-r--r--kttsd/kttsd/speaker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kttsd/kttsd/speaker.cpp b/kttsd/kttsd/speaker.cpp
index 35a3356..1ba1f46 100644
--- a/kttsd/kttsd/speaker.cpp
+++ b/kttsd/kttsd/speaker.cpp
@@ -498,7 +498,7 @@ void Speaker::doUtterances()
// See if synthesis is completed.
if (it->plugin->getState() == psFinished)
{
- it->audioUrl = KStandardDirs::realFilePath(it->plugin->getFilename());
+ it->audioUrl = TDEStandardDirs::realFilePath(it->plugin->getFilename());
// kdDebug() << "Speaker::doUtterances: synthesized filename: " << it->audioUrl << endl;
it->plugin->ackFinished();
it->state = usSynthed;
@@ -1507,7 +1507,7 @@ TQString Speaker::makeSuggestedFilename()
tempFile.close();
TQFile::remove(waveFile);
// kdDebug() << "Speaker::makeSuggestedFilename: Suggesting filename: " << waveFile << endl;
- return KStandardDirs::realFilePath(waveFile);
+ return TDEStandardDirs::realFilePath(waveFile);
}
/**