TwoColumnTextView.st
changeset 162 8b671f2e31ef
parent 161 5b6e284959a4
child 234 da6bb07255b2
--- a/TwoColumnTextView.st	Sat Apr 27 20:23:13 1996 +0200
+++ b/TwoColumnTextView.st	Mon Apr 29 10:19:51 1996 +0200
@@ -50,6 +50,13 @@
     See subclass DiffTextView for a real class;
     see ChangesBrowsers compare operation for a real application
     of this kind of views.
+
+    [see also:]
+        DiffTextView
+        TextView EditTextView
+
+    [author:]
+        Claus Gittinger
 "
 
     "Created: 20.11.1995 / 13:21:17 / cg"
@@ -92,7 +99,8 @@
 !TwoColumnTextView class methodsFor:'instance creation'!
 
 openOn:firstText and:secondText
-    "open up a view showing firstText and secondText side-by-side"
+    "open up a view showing firstText and secondText side-by-side.
+     This does not make much sense for unrelated texts - of course."
 
     |top v|
 
@@ -116,12 +124,13 @@
         and:('smalltalk.rc' asFilename contentsOfEntireFile)
     "
 
-    "Modified: 20.11.1995 / 13:36:15 / cg"
+    "Modified: 25.4.1996 / 13:31:03 / cg"
 !
 
 openOn:firstText label:firstLabel and:secondText label:secondLabel
     "open up a view showing firstText and secondText side-by-side,
-     and labels for both views."
+     and labels for both views.
+     This does not make much sense for unrelated texts - of course."
 
     |top v l1 l2|
 
@@ -147,7 +156,7 @@
         label:'display.rc'
     "
 
-    "Modified: 20.11.1995 / 13:36:20 / cg"
+    "Modified: 25.4.1996 / 13:31:09 / cg"
 ! !
 
 !TwoColumnTextView class methodsFor:'specification'!
@@ -170,4 +179,4 @@
 !TwoColumnTextView class methodsFor:'documentation'!
 
 version
-^ '$Header: /cvs/stx/stx/libwidg2/TwoColumnTextView.st,v 1.12 1996-04-27 18:23:13 cg Exp $'! !
+^ '$Header: /cvs/stx/stx/libwidg2/TwoColumnTextView.st,v 1.13 1996-04-29 08:19:51 cg Exp $'! !