AboutBox.st
changeset 879 8582038d1287
parent 708 f89ff543ea18
child 1592 68d7e59d0c06
--- a/AboutBox.st	Fri Dec 20 01:10:54 1996 +0100
+++ b/AboutBox.st	Fri Dec 20 12:15:13 1996 +0100
@@ -17,7 +17,7 @@
 	category:'Views-DialogBoxes'
 !
 
-!AboutBox  class methodsFor:'documentation'!
+!AboutBox class methodsFor:'documentation'!
 
 copyright
 "
@@ -49,7 +49,7 @@
 "
 ! !
 
-!AboutBox  class methodsFor:'defaults'!
+!AboutBox class methodsFor:'defaults'!
 
 aboutText
     "return a string to be shown in the box.
@@ -92,7 +92,7 @@
      Can be redefined in custom subclasses."
 
     CachedIcon isNil ifTrue:[
-        CachedIcon := Form fromFile:'SmalltalkX.xbm' resolution:100.
+        CachedIcon := Image fromFile:'bitmaps/SmalltalkX.xbm' resolution:100.
     ].
     ^ CachedIcon
 
@@ -159,8 +159,8 @@
     "Modified: 6.9.1996 / 09:47:10 / stefan"
 ! !
 
-!AboutBox  class methodsFor:'documentation'!
+!AboutBox class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AboutBox.st,v 1.18 1996-09-06 09:09:05 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AboutBox.st,v 1.19 1996-12-20 11:15:13 cg Exp $'
 ! !