Updates for 0.9.19 release. Added authorization code to permit Fontconfig files to be installed on first launch from a non-admin account. Fixed possible lockups in fullscreen mode when attempting to print.

This commit is contained in:
Martin Fuhrer 2008-02-05 06:30:23 +00:00
parent 3c062cd1e1
commit 04506fa385
10 changed files with 264 additions and 118 deletions

View file

@ -27,6 +27,7 @@
void speak_string(const wchar_t *widecharString)
{
#ifndef __APPLE_10_2_8__
char multibyteString[1024];
NSString *string = [NSString string];
@ -48,4 +49,5 @@ void speak_string(const wchar_t *widecharString)
[synthesizer setVoice:[voices objectAtIndex:rand()%[voices count]]];
[synthesizer startSpeakingString:string];
[synthesizer release];
#endif // !__APPLE_10_2_8__
}