Author: ks156
Date: 2009-01-15 11:15:09 +0100 (Thu, 15 Jan 2009)
New Revision: 3466

Modified:
   
software_suite_v2/software/tools/attitunesStudio/trunk/src/com/tuxisalive/attitunes/format/ATTBlockParams.java
Log:
* Fixed a small bug with the TTS :
  When a "\n" was detected, it was replaced by "." . Now, "\n" are replaced by
  a space.


Modified: 
software_suite_v2/software/tools/attitunesStudio/trunk/src/com/tuxisalive/attitunes/format/ATTBlockParams.java
===================================================================
--- 
software_suite_v2/software/tools/attitunesStudio/trunk/src/com/tuxisalive/attitunes/format/ATTBlockParams.java
      2009-01-15 09:52:28 UTC (rev 3465)
+++ 
software_suite_v2/software/tools/attitunesStudio/trunk/src/com/tuxisalive/attitunes/format/ATTBlockParams.java
      2009-01-15 10:15:09 UTC (rev 3466)
@@ -572,7 +572,7 @@
                result[1] = cmd;
                String text = (String)struct.get("text");
                // Remove ending lines
-               text = text.replace("\n", ".");
+               text = text.replace("\n", " ");
                // Try to encode the string
                try
                {


------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
Tux-droid-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tux-droid-svn

Reply via email to