DiffTextView.st
branchjv
changeset 12405 76f9a872362b
parent 12128 a7ff7d66ee85
parent 12383 d1476f5b8c95
child 12431 9f0c59c742d5
--- a/DiffTextView.st	Mon Jan 28 21:19:21 2013 +0000
+++ b/DiffTextView.st	Fri Feb 08 08:35:48 2013 +0100
@@ -100,6 +100,7 @@
 "
 ! !
 
+
 !DiffTextView class methodsFor:'instance creation'!
 
 openOnClass:classA labelA:lblA andClass:classB labelB:lblB title:title ifSame:sameAction
@@ -160,6 +161,7 @@
     ^ v
 ! !
 
+
 !DiffTextView class methodsFor:'defaults'!
 
 diffCommand
@@ -176,6 +178,7 @@
     DiffListUtility diffCommandTemplate:aCommandTemplateString
 ! !
 
+
 !DiffTextView methodsFor:'accessing'!
 
 text1:t1 text2:t2
@@ -184,8 +187,8 @@
 
     |text1 text2 diffList|
 
-    text1 := (t1 copyReplaceAll:Character return with:Character cr) asStringCollection.
-    text2 := (t2 copyReplaceAll:Character return with:Character cr) asStringCollection.
+    text1 := t1 asStringCollection.
+    text2 := t2 asStringCollection.
 
     diffList := self diffListFor:text1 and:text2.
 
@@ -226,6 +229,7 @@
     "Modified: / 27-03-2007 / 12:06:46 / cg"
 ! !
 
+
 !DiffTextView methodsFor:'initialization'!
 
 addNextPreviousButtons
@@ -269,6 +273,7 @@
     "Modified: 14.6.1996 / 16:14:39 / cg"
 ! !
 
+
 !DiffTextView methodsFor:'private'!
 
 diffListFor:text1 and:text2
@@ -580,16 +585,18 @@
     textView2 list:lists second.
 ! !
 
+
 !DiffTextView class methodsFor:'documentation'!
 
 version
-    ^ '$Id: DiffTextView.st 7854 2012-01-30 17:49:41Z vranyj1 $'
+    ^ '$Header: /cvs/stx/stx/libtool/DiffTextView.st,v 1.57 2013-02-01 15:13:02 cg Exp $'
 !
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/DiffTextView.st,v 1.56 2009/10/10 10:09:23 cg Exp §'
+    ^ '$Header: /cvs/stx/stx/libtool/DiffTextView.st,v 1.57 2013-02-01 15:13:02 cg Exp $'
 !
 
 version_SVN
     ^ '$Id: DiffTextView.st 7854 2012-01-30 17:49:41Z vranyj1 $'
 ! !
+