Subversion Repository Public Repository

litesoft

Diff Revisions 664 vs 675 for /trunk/GWT_Sandbox/SampleHello/src/org/litesoft/hello/client/Hello.java

Diff revisions: vs.
  @@ -88,7 +88,7 @@
88 88 do {
89 89 String zText = " " + (mDecaSecs++);
90 90 zText = zText.substring( zText.length() - 10 );
91 - zText = zText.substring( 0, 9 ) + '.' + zText.substring( 9 );
91 + zText = zText.substring( 0, 9 ) + '.' + zText.substring( 9 ) + " tenths of a second";
92 92 mLabel.setText( zText );
93 93 delay = (int)((started + (mDecaSecs * 100)) - System.currentTimeMillis());
94 94 } while (delay < 10);