*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Thu, 30 Jan 2003 16:38:52 +0100
changeset 2682 1b5aeb99f26a
parent 2681 feaa23e98694
child 2683 3c834e9ca478
*** empty log message ***
EditTextView.st
--- a/EditTextView.st	Thu Jan 30 10:23:29 2003 +0100
+++ b/EditTextView.st	Thu Jan 30 16:38:52 2003 +0100
@@ -4219,7 +4219,7 @@
 
     self withWaitCursorDo:[
         SOAP::SoapImplError handle:[:ex |
-            Dialog warn:('Translation failed - WEB Service error:\\    %1.' bindWith:ex description)
+            Dialog warn:('Translation failed - WEB Service error:\\%1.' bindWith:ex description allBold) withCRs
         ] do:[
             translated := SOAP::BabelFishClient new translate:original mode:fromToModeString.
         ]
@@ -4426,7 +4426,7 @@
         text size == 0 ifTrue:[^ self].
 
         SOAP::SoapImplError handle:[:ex |
-            Dialog warn:('Spelling correction failed - WEB Service error:\\    %1.' bindWith:ex description).
+            Dialog warn:('Spelling correction failed - WEB Service error:\\%1.' bindWith:ex description allBold) withCRs.
             ^ self.
         ] do:[
             suggestion := SOAP::GoogleClient new spellingSuggestionOf:text.
@@ -5448,5 +5448,5 @@
 !EditTextView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/EditTextView.st,v 1.291 2003-01-30 09:23:29 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/EditTextView.st,v 1.292 2003-01-30 15:38:52 cg Exp $'
 ! !