Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/mumble/TextToSpeech_unix.cpp')
-rw-r--r--src/mumble/TextToSpeech_unix.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/mumble/TextToSpeech_unix.cpp b/src/mumble/TextToSpeech_unix.cpp
index 98d20def2..43a0fef3d 100644
--- a/src/mumble/TextToSpeech_unix.cpp
+++ b/src/mumble/TextToSpeech_unix.cpp
@@ -37,7 +37,7 @@ class TextToSpeechPrivate {
public:
TextToSpeechPrivate();
~TextToSpeechPrivate();
- void say(QString text);
+ void say(const QString &text);
void setVolume(int v);
};
@@ -51,10 +51,8 @@ TextToSpeechPrivate::~TextToSpeechPrivate() {
qpFestival.close();
}
-void TextToSpeechPrivate::say(QString text) {
- QTextDocument td;
- td.setHtml(text);
- qpFestival.write(QString::fromLatin1("(SayText \"%1\")").arg(td.toPlainText().replace(QLatin1String("\""),QLatin1String("\\\""))).toLatin1());
+void TextToSpeechPrivate::say(const QString &text) {
+ qpFestival.write(QString::fromLatin1("(SayText \"%1\")").arg(text.replace(QLatin1String("\""),QLatin1String("\\\""))).toLatin1());
}
void TextToSpeechPrivate::setVolume(int) {
@@ -69,7 +67,7 @@ TextToSpeech::~TextToSpeech() {
delete d;
}
-void TextToSpeech::say(QString text) {
+void TextToSpeech::say(const QString &text) {
if (enabled)
d->say(text);
}