PrintConverter.st
changeset 3721 d6c113e8a8b5
parent 3458 9fcc98d525df
child 3773 7351373f0c28
--- a/PrintConverter.st	Tue Jul 26 17:58:17 2016 +0200
+++ b/PrintConverter.st	Wed Aug 03 12:42:42 2016 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1995 by Claus Gittinger
 	      All Rights Reserved
@@ -444,13 +442,13 @@
 !
 
 initForYesNo
-    "initialize to convert a 'yes'/'no' string to/from a boolean 
+    "initialize to convert a 'yes'/'no' string to/from a boolean
      The string is supposed to be in the current Language
-     (i.e. if german, ja/nein has to be enterred.
+     (i.e. if german, ja/nein has to be entered.
      Invalid entries are converted to false."
 
     valueToStringBlock := [:bool | bool ifTrue:[ApplicationModel classResources string:'yes']
-					ifFalse:[ApplicationModel classResources string:'no']].
+                                        ifFalse:[ApplicationModel classResources string:'no']].
     stringToValueBlock := [:string | string = (ApplicationModel classResources string:'yes')]
 !
 
@@ -468,6 +466,6 @@
 !PrintConverter class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/PrintConverter.st,v 1.19 2015-04-22 18:03:20 stefan Exp $'
+    ^ '$Header$'
 ! !