use #contents instead of #contentsOfEntireFile
authorClaus Gittinger <cg@exept.de>
Thu, 11 Jul 1996 14:11:26 +0200
changeset 667 9fc53023512e
parent 666 c349555a5550
child 668 6da85ce16fde
use #contents instead of #contentsOfEntireFile
FBrowser.st
FileBrowser.st
--- a/FBrowser.st	Wed Jul 10 12:55:11 1996 +0200
+++ b/FBrowser.st	Thu Jul 11 14:11:26 1996 +0200
@@ -668,9 +668,9 @@
 
         self withWaitCursorDo:[
             name1 notNil ifTrue:[
-                text1 := name1 contentsOfEntireFile.
+                text1 := name1 contents.
             ].
-            text2 := name2 contentsOfEntireFile.
+            text2 := name2 contents.
             d := DiffTextView 
                     openOn:text1 label:l1
                     and:text2 label:name2 pathName.
@@ -679,7 +679,7 @@
     ].
 
     "Created: 7.12.1995 / 20:33:58 / cg"
-    "Modified: 19.4.1996 / 15:51:03 / cg"
+    "Modified: 11.7.1996 / 14:10:45 / cg"
 !
 
 openEditor
@@ -2644,5 +2644,5 @@
 !FileBrowser  class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Attic/FBrowser.st,v 1.93 1996-06-24 14:34:45 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Attic/FBrowser.st,v 1.94 1996-07-11 12:11:26 cg Exp $'
 ! !
--- a/FileBrowser.st	Wed Jul 10 12:55:11 1996 +0200
+++ b/FileBrowser.st	Thu Jul 11 14:11:26 1996 +0200
@@ -668,9 +668,9 @@
 
         self withWaitCursorDo:[
             name1 notNil ifTrue:[
-                text1 := name1 contentsOfEntireFile.
+                text1 := name1 contents.
             ].
-            text2 := name2 contentsOfEntireFile.
+            text2 := name2 contents.
             d := DiffTextView 
                     openOn:text1 label:l1
                     and:text2 label:name2 pathName.
@@ -679,7 +679,7 @@
     ].
 
     "Created: 7.12.1995 / 20:33:58 / cg"
-    "Modified: 19.4.1996 / 15:51:03 / cg"
+    "Modified: 11.7.1996 / 14:10:45 / cg"
 !
 
 openEditor
@@ -2644,5 +2644,5 @@
 !FileBrowser  class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/FileBrowser.st,v 1.93 1996-06-24 14:34:45 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FileBrowser.st,v 1.94 1996-07-11 12:11:26 cg Exp $'
 ! !