class: Warning
authorClaus Gittinger <cg@exept.de>
Tue, 20 Jan 2015 15:39:05 +0100
changeset 17307 8dfa29195a23
parent 17306 29dcfbfb331c
child 17308 ec60fc02a37f
class: Warning changed: #showWarnDialog
Warning.st
--- a/Warning.st	Tue Jan 20 15:30:30 2015 +0100
+++ b/Warning.st	Tue Jan 20 15:39:05 2015 +0100
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libbasic' }"
 
+"{ NameSpace: Smalltalk }"
+
 UserNotification subclass:#Warning
 	instanceVariableNames:''
 	classVariableNames:''
@@ -154,7 +156,7 @@
          on systems without GUI, simply show
          the message on the Transcript.
         "
-        Transcript show:'warning: '; showCR:text.
+        Transcript show:'Warning: '; showCR:text.
     ].
 
     "
@@ -167,11 +169,11 @@
 !Warning class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Warning.st,v 1.15 2014-05-13 22:09:49 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Warning.st,v 1.16 2015-01-20 14:39:05 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Warning.st,v 1.15 2014-05-13 22:09:49 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Warning.st,v 1.16 2015-01-20 14:39:05 cg Exp $'
 ! !