From a27aa5dcda7e65de6e1bb04cfd8ea678242648d0 Mon Sep 17 00:00:00 2001 From: Philip Schell Date: Tue, 22 Oct 2013 12:11:15 +0000 Subject: WinterSpeak now has SAPI40a support ticket:476 and other minor fixes git-svn-id: http://svn.miranda-ng.org/main/trunk@6584 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/WinterSpeak/src/SpeechInterface.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'plugins/WinterSpeak/src/SpeechInterface.cpp') diff --git a/plugins/WinterSpeak/src/SpeechInterface.cpp b/plugins/WinterSpeak/src/SpeechInterface.cpp index 500165f356..261cf547ec 100644 --- a/plugins/WinterSpeak/src/SpeechInterface.cpp +++ b/plugins/WinterSpeak/src/SpeechInterface.cpp @@ -1,6 +1,7 @@ #include "Common.h" #include "SpeechInterface.h" #include "SpeechApi51.h" +#include "SpeechApi40a.h" SpeechInterface::SpeechInterface() @@ -17,11 +18,11 @@ TextToSpeech * SpeechInterface::createTts(std::wstring &engine) const { TextToSpeech *tts = 0; - /*if (SpeechApi40a::getDescription() == engine) + if (SpeechApi40a::getDescription() == engine) { tts = new SpeechApi40a(); } - else*/ + else if (SpeechApi51::getDescription() == engine) { tts = new SpeechApi51(); @@ -50,11 +51,11 @@ std::vector SpeechInterface::getAvailableEngines() { std::vector engines; - /*SpeechApi40a sapi40a; + SpeechApi40a sapi40a; if (sapi40a.isAvailable()) { engines.push_back(SpeechApi40a::getDescription()); - }*/ + } SpeechApi51 sapi51; if (sapi51.isAvailable()) -- cgit v1.2.3