#REFACTORING
authorClaus Gittinger <cg@exept.de>
Mon, 28 Mar 2016 22:55:13 +0200
changeset 19492 8422ce672a77
parent 19491 9c451dfc5949
child 19493 dc84900e9561
#REFACTORING class: Smalltalk changed: #hello sizeofPointer->pointerSize
Smalltalk.st
--- a/Smalltalk.st	Mon Mar 28 15:16:49 2016 +0200
+++ b/Smalltalk.st	Mon Mar 28 22:55:13 2016 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1988 by Claus Gittinger
 	      All Rights Reserved
@@ -8184,13 +8186,13 @@
     (lang == #de) ifTrue:[
         proto := 'Willkommen bei %1 (%4Version %2 von %3)'. bit := 'Bit'.
     ] ifFalse:[ (lang == #fr) ifTrue:[
-        proto := 'Salut, Bienvenue à %1 (%4version %2 de %3)'
+        proto := 'Salut, Bienvenue à %1 (%4version %2 de %3)'
     ] ifFalse:[ (lang == #it) ifTrue:[
         proto := 'Ciao, benvenuto al %1 (%4versione %2 di %3)'
     ] ifFalse:[ (lang == #es) ifTrue:[
         proto := 'Hola, bienvenida a %1 (%4version %2 de %3)'
     ] ifFalse:[ (lang == #pt) ifTrue:[
-        proto := 'Olá!!, mem-vindo a %1 (%4version %2 de %3)'
+        proto := 'Olá!!, mem-vindo a %1 (%4version %2 de %3)'
     ] ifFalse:[ (lang == #no) ifTrue:[
         proto := 'Hei, verdenmottakelse til %1 (%4versjon %2 av %3)'
     ]]]]]].
@@ -8200,8 +8202,8 @@
     proto isNil ifTrue:[
         proto := 'Hello World - welcome to %1 (%4version %2 of %3)'.
     ].
-    ExternalBytes sizeofPointer ~~ 4 ifTrue:[
-        bitsPerWordString := (ExternalBytes sizeofPointer * 8) printString,bit,' '.
+    ExternalAddress pointerSize ~~ 4 ifTrue:[
+        bitsPerWordString := (ExternalAddress pointerSize * 8) printString,bit,' '.
     ] ifFalse:[
         bitsPerWordString := ''
     ].