ThreeColumnTextView.st
changeset 1440 6e313ad0c279
parent 111 86f6d5536b05
child 2965 1f32958fcf65
--- a/ThreeColumnTextView.st	Fri Jul 09 13:44:51 1999 +0200
+++ b/ThreeColumnTextView.st	Fri Jul 09 16:56:58 1999 +0200
@@ -57,26 +57,24 @@
 
 examples
 "
-     TwoColumnTextView are currently not directly used by the system.
-     However, it is used as an abstract superclass for DiffTextView.
+     ThreeColumnTextViews are currently not directly used by the system.
+     However, it is used as an abstract superclass for Diff3TextView.
      See more examples there.
      (you may find nice uses for it anyway ...)
 
-     TwoColumnTextView
-        openOn:('smalltalk.rc' asFilename contentsOfEntireFile)
-        and:('display.rc' asFilename contentsOfEntireFile)
+     ThreeColumnTextView
+        openOn:('smalltalk.rc' asFilename contents)
+        and:('display.rc' asFilename contents)
+        and:('host.rc' asFilename contents)
 
 
-     TwoColumnTextView
-        openOn:('display.rc' asFilename contentsOfEntireFile)
-        and:('smalltalk.rc' asFilename contentsOfEntireFile)
-
-
-     TwoColumnTextView
-        openOn:('smalltalk.rc' asFilename contentsOfEntireFile)
+     ThreeColumnTextView
+        openOn:('smalltalk.rc' asFilename contents)
         label:'smalltalk.rc'
-        and:('display.rc' asFilename contentsOfEntireFile)
+        and:('display.rc' asFilename contents)
         label:'display.rc'
+        and:('host.rc' asFilename contents)
+        label:'host.rc'
 "
 
     "Created: 20.11.1995 / 13:21:42 / cg"
@@ -167,5 +165,5 @@
 !ThreeColumnTextView class methodsFor:'documentation'!
 
 version
-^ '$Header: /cvs/stx/stx/libwidg2/ThreeColumnTextView.st,v 1.1 1995-12-12 12:34:32 cg Exp $'
+^ '$Header: /cvs/stx/stx/libwidg2/ThreeColumnTextView.st,v 1.2 1999-07-09 14:56:58 cg Exp $'
 ! !