checkin from browser
authorClaus Gittinger <cg@exept.de>
Thu, 09 Dec 1999 12:11:05 +0100
changeset 2074 24e9d7beed2b
parent 2073 40873b6d96bb
child 2075 005c01e3f259
checkin from browser
TextView.st
YesNoBox.st
--- a/TextView.st	Thu Dec 09 12:10:41 1999 +0100
+++ b/TextView.st	Thu Dec 09 12:11:05 1999 +0100
@@ -180,7 +180,7 @@
     i := self classResources at:'ICON' default:nil.
     i isNil ifTrue:[
         nm := ClassResources at:'ICON_FILE' default:'Editor.xbm'.
-        i := Smalltalk bitmapFromFileNamed:nm forClass:self.
+        i := Smalltalk imageFromFileNamed:nm forClass:self.
     ].
     i notNil ifTrue:[
         i := i onDevice:Display
@@ -2977,5 +2977,5 @@
 !TextView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.146 1999-12-01 20:35:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.147 1999-12-09 11:11:05 cg Exp $'
 ! !
--- a/YesNoBox.st	Thu Dec 09 12:10:41 1999 +0100
+++ b/YesNoBox.st	Thu Dec 09 12:11:05 1999 +0100
@@ -176,7 +176,7 @@
             RequestBitmap := img
         ] ifFalse:[
             imgFileName := StyleSheet at:'requestBox.iconFile' default:'bitmaps/Request.xbm'.
-            RequestBitmap := Smalltalk bitmapFromFileNamed:imgFileName forClass:self.
+            RequestBitmap := Smalltalk imageFromFileNamed:imgFileName forClass:self.
         ].
         RequestBitmap notNil ifTrue:[
             RequestBitmap := RequestBitmap onDevice:Display
@@ -428,5 +428,5 @@
 !YesNoBox class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/YesNoBox.st,v 1.43 1999-12-01 20:39:23 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/YesNoBox.st,v 1.44 1999-12-09 11:10:11 cg Exp $'
 ! !