diff options
Diffstat (limited to 'kttsd/plugins/hadifix/hadifixproc.cpp')
-rw-r--r-- | kttsd/plugins/hadifix/hadifixproc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kttsd/plugins/hadifix/hadifixproc.cpp b/kttsd/plugins/hadifix/hadifixproc.cpp index 3e4b4ee..ad2cf21 100644 --- a/kttsd/plugins/hadifix/hadifixproc.cpp +++ b/kttsd/plugins/hadifix/hadifixproc.cpp @@ -377,9 +377,9 @@ HadifixProc::VoiceGender HadifixProc::determineGender(TQString mbrola, TQString else { if (output != 0) *output = speech.stdOut; - if (speech.stdOut.tqcontains("female", false)) + if (speech.stdOut.contains("female", false)) result = FemaleGender; - else if (speech.stdOut.tqcontains("male", false)) + else if (speech.stdOut.contains("male", false)) result = MaleGender; else result = NoGender; |