summaryrefslogtreecommitdiff
path: root/plugins/WinterSpeak/src/SpeechInterface.cpp
diff options
context:
space:
mode:
authorPhilip Schell <github.com@blubbfish.net>2013-10-22 12:11:15 +0000
committerPhilip Schell <github.com@blubbfish.net>2013-10-22 12:11:15 +0000
commita27aa5dcda7e65de6e1bb04cfd8ea678242648d0 (patch)
tree6d126293901ae226f0a74f105f026a8f6085bf0f /plugins/WinterSpeak/src/SpeechInterface.cpp
parentd2f13f41feb91bbc53a86207d0a1f75d2d22f8fb (diff)
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
Diffstat (limited to 'plugins/WinterSpeak/src/SpeechInterface.cpp')
-rw-r--r--plugins/WinterSpeak/src/SpeechInterface.cpp9
1 files changed, 5 insertions, 4 deletions
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<std::wstring> SpeechInterface::getAvailableEngines()
{
std::vector<std::wstring> engines;
- /*SpeechApi40a sapi40a;
+ SpeechApi40a sapi40a;
if (sapi40a.isAvailable())
{
engines.push_back(SpeechApi40a::getDescription());
- }*/
+ }
SpeechApi51 sapi51;
if (sapi51.isAvailable())