#OTHER by mawalch
authormawalch
Wed, 03 Aug 2016 12:42:42 +0200
changeset 3721 d6c113e8a8b5
parent 3719 a36b0c184dcb
child 3723 f02f03d0186a
child 3724 4a753c4710c9
#OTHER by mawalch enterred -> entered
PrintConverter.st
--- 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$'
 ! !