Tools__CodeView2.st
branchjv
changeset 12262 d25ef6bb0ef3
parent 12254 b1237f76f501
child 12265 f1b3696cf042
--- a/Tools__CodeView2.st	Wed Jul 18 10:57:46 2012 +0100
+++ b/Tools__CodeView2.st	Wed Jul 18 18:00:57 2012 +0100
@@ -1893,7 +1893,7 @@
     "/ higher prio to prevent it from being changed while we convert it (by editing)
     Processor activeProcess
         withHigherPriorityDo:[
-            changedSource :=  textView contentsAsString asStringCollection.
+            changedSource := textView contentsAsString asStringCollection.
         ].
     changedSource := changedSource collect:[:line | line string withoutTrailingSeparators withTabsExpanded].
     changedSource := changedSource collect:[:line | line isEmpty ifTrue:[nil] ifFalse:[line]].
@@ -1918,6 +1918,7 @@
     ^ modified
 
     "Created: / 06-02-2010 / 19:59:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified (format): / 05-06-2012 / 23:55:02 / cg"
 !
 
 showInfo: message
@@ -2523,10 +2524,11 @@
     "Modified: / 26-04-2010 / 21:48:23 / Jakub <zelenja7@fel.cvut.cz>"
 !
 
-deletedLines:something
-deletedLines:=something.
+deletedLines:something 
+    deletedLines := something.
 
     "Modified: / 26-04-2010 / 21:48:54 / Jakub <zelenja7@fel.cvut.cz>"
+    "Modified (format): / 17-07-2012 / 18:56:44 / cg"
 !
 
 diffMode
@@ -2557,10 +2559,11 @@
     "Modified: / 26-04-2010 / 21:48:27 / Jakub <zelenja7@fel.cvut.cz>"
 !
 
-insertedLines:something
-insertedLines:=something.
+insertedLines:something 
+    insertedLines := something.
 
     "Modified: / 26-04-2010 / 21:48:59 / Jakub <zelenja7@fel.cvut.cz>"
+    "Modified (format): / 17-07-2012 / 18:56:50 / cg"
 !
 
 modifiedChannel: aValueHolder
@@ -2594,12 +2597,12 @@
 !
 
 colorDeleted
-
     ^ self colorInserted.
     "/^ Color pink
 
     "Modified: / 24-06-2010 / 14:16:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified (format): / 07-10-2011 / 20:26:47 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified (format): / 17-07-2012 / 18:57:14 / cg"
 !
 
 colorInserted
@@ -3444,15 +3447,15 @@
 !CodeView2 class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.59 2012/05/18 08:59:17 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.61 2012/07/17 17:03:15 cg Exp $'
 !
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.59 2012/05/18 08:59:17 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.61 2012/07/17 17:03:15 cg Exp §'
 !
 
 version_SVN
-    ^ '$Id: Tools__CodeView2.st 8007 2012-06-05 14:49:00Z vranyj1 $'
+    ^ '$Id: Tools__CodeView2.st 8018 2012-07-18 17:00:57Z vranyj1 $'
 ! !
 
 CodeView2 initialize!