diff options
| author | Keith Packard <keithp@keithp.com> | 2010-07-28 11:20:22 -0700 |
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2010-07-28 11:20:22 -0700 |
| commit | 172a2817dde6718724f2b5fad5a7761801446fa0 (patch) | |
| tree | 880efde60fc468f1046307470141c773856399bd /ao-tools/altosui/AltosVoice.java | |
| parent | f2a006fd98045066bdf429cc142d033e9feb0a8f (diff) | |
| parent | 81bf2042ca39eb106b789e5a08647c3114669358 (diff) | |
Merge branch 'macos'
Diffstat (limited to 'ao-tools/altosui/AltosVoice.java')
| -rw-r--r-- | ao-tools/altosui/AltosVoice.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ao-tools/altosui/AltosVoice.java b/ao-tools/altosui/AltosVoice.java index e4ea99a2..c39bfb9b 100644 --- a/ao-tools/altosui/AltosVoice.java +++ b/ao-tools/altosui/AltosVoice.java @@ -47,6 +47,10 @@ public class AltosVoice implements Runnable { } } + public void speak(String format, Object... parameters) { + speak(String.format(format, parameters)); + } + public AltosVoice () { voice_manager = VoiceManager.getInstance(); voice = voice_manager.getVoice(voice_name); |
