AboutBox.st
changeset 2455 c1ccd8fe5e92
parent 2169 4059c2a4e407
child 2477 cfb8a4d7b557
equal deleted inserted replaced
2454:114111038a2b 2455:c1ccd8fe5e92
    97      Can be redefined in custom subclasses."
    97      Can be redefined in custom subclasses."
    98 
    98 
    99     CachedIcon isNil ifTrue:[
    99     CachedIcon isNil ifTrue:[
   100         CachedIcon := Icon stxIcon.
   100         CachedIcon := Icon stxIcon.
   101         CachedIcon isNil ifTrue:[
   101         CachedIcon isNil ifTrue:[
   102             CachedIcon := Image fromFile:'bitmaps/SmalltalkX.xbm' resolution:100.
   102             CachedIcon := Smalltalk bitmapFromFileNamed:'SmalltalkX.xbm' inPackage:'stx:libtool'
   103         ]
   103         ]
   104     ].
   104     ].
   105     ^ CachedIcon
   105     ^ CachedIcon
   106 
   106 
   107     "Modified: / 25.5.1999 / 15:44:48 / cg"
   107     "Modified: / 25.5.1999 / 15:44:48 / cg"
   168 ! !
   168 ! !
   169 
   169 
   170 !AboutBox class methodsFor:'documentation'!
   170 !AboutBox class methodsFor:'documentation'!
   171 
   171 
   172 version
   172 version
   173     ^ '$Header: /cvs/stx/stx/libtool/AboutBox.st,v 1.22 1999-05-25 13:52:41 cg Exp $'
   173     ^ '$Header: /cvs/stx/stx/libtool/AboutBox.st,v 1.23 1999-12-01 21:12:56 cg Exp $'
   174 ! !
   174 ! !