diff options
author | Jaromir Wysoglad | 2019-08-13 00:14:24 +0200 |
---|---|---|
committer | Filippos Karapetis | 2019-09-01 22:47:55 +0300 |
commit | c2c44582537264c7fe0fe55ba456e54b405d0678 (patch) | |
tree | 10fc613ea0a792c41688080d1218c582b2088435 /common | |
parent | b1bffaba8682af2870d4ff019bedbceb72440707 (diff) | |
download | scummvm-rg350-c2c44582537264c7fe0fe55ba456e54b405d0678.tar.gz scummvm-rg350-c2c44582537264c7fe0fe55ba456e54b405d0678.tar.bz2 scummvm-rg350-c2c44582537264c7fe0fe55ba456e54b405d0678.zip |
JANITORIAL: Remove some trailing whitespaces
Diffstat (limited to 'common')
-rw-r--r-- | common/text-to-speech.cpp | 2 | ||||
-rw-r--r-- | common/text-to-speech.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/common/text-to-speech.cpp b/common/text-to-speech.cpp index f9dc4c69aa..cdfc8ab77f 100644 --- a/common/text-to-speech.cpp +++ b/common/text-to-speech.cpp @@ -36,7 +36,7 @@ TTSVoice::TTSVoice() *_refCount = 1; } -TTSVoice::TTSVoice(Gender gender, Age age, void *data, String description) +TTSVoice::TTSVoice(Gender gender, Age age, void *data, String description) : _gender(gender) , _age(age) , _data(data) diff --git a/common/text-to-speech.h b/common/text-to-speech.h index 68676567a3..d4f6c68048 100644 --- a/common/text-to-speech.h +++ b/common/text-to-speech.h @@ -144,7 +144,7 @@ public: DROP }; /** - * The constructor sets the language to the translation manager language if + * The constructor sets the language to the translation manager language if * USE_TRANSLATION is defined, or english when it isn't defined. It sets the rate, * pitch and volume to their middle values. */ @@ -209,7 +209,7 @@ public: * Returns true, if the TTS engine is ready to speak (isn't speaking and isn't paused) */ virtual bool isReady() { return false; } - + /** * Sets a voice to be used by the TTS. * @@ -284,7 +284,7 @@ public: * have the needed gender. * * @param gender Gender, which indices should be returned - * + * * @return Array of indices into _availableVoices */ Array<int> getVoiceIndicesByGender (TTSVoice::Gender gender); |