Tools__TextDiffTool.st
branchjv
changeset 12406 1fbd331e4489
parent 12401 4714b9640528
parent 12405 76f9a872362b
child 12431 9f0c59c742d5
--- a/Tools__TextDiffTool.st	Mon Feb 04 23:58:23 2013 +0100
+++ b/Tools__TextDiffTool.st	Fri Feb 08 08:51:42 2013 +0100
@@ -97,16 +97,6 @@
 
 !TextDiffTool class methodsFor:'interface specs'!
 
-
-
-
-
-
-
-
-
-
-
 windowSpec
     "This resource specification was automatically generated
      by the UIPainter of ST/X."
@@ -302,8 +292,6 @@
     "Modified: / 30-06-2011 / 20:53:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-
-
 versionCLabelSpec
     "This resource specification was automatically generated
      by the UIPainter of ST/X."
@@ -391,11 +379,10 @@
 !
 
 labelA: aString
+
     ^self labelAHolder value: aString
 
-    "Modified: / 19-07-2011 / 11:41:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Created: / 30-08-2011 / 09:42:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified (format): / 27-07-2012 / 21:57:10 / cg"
+    "Created: / 16-03-2012 / 13:05:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 labelB: aString
@@ -541,10 +528,6 @@
     ].
 !
 
-
-
-
-
 diffView
 "/    diffView isNil ifTrue:[
         diffView := self initializeDiffView.
@@ -582,13 +565,7 @@
     diffView notNil ifTrue:[diffView languageHolder: aValueHolder].
 
     "Modified: / 19-07-2011 / 12:54:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-!
-
-
-
-
-
- !
+! !
 
 
 !TextDiffTool methodsFor:'aspects-versions'!
@@ -782,12 +759,7 @@
 
 !TextDiffTool methodsFor:'change & update'!
 
-codeAspect
-    ^self codeAspectHolder value
 
-    "Created: / 19-07-2011 / 19:07:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified (format): / 27-07-2012 / 21:56:52 / cg"
-!
 
 codeAspect:aSymbol
     self codeAspectHolder value:aSymbol
@@ -821,29 +793,23 @@
     "Created: / 16-03-2012 / 12:36:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-
-
 updateAfterAorBorCChanged
     "Called whenever one of the texts changes"
 
     ^ self subclassResponsibility
 
     "Modified (comment): / 16-03-2012 / 12:39:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-!
-
- !
+! !
 
 
 !TextDiffTool methodsFor:'hooks'!
 
-
+postBuildDiffView:aScrollableView
 
-postBuildDiffView:aScrollableView
     diffView := aScrollableView.
     self setupCodeView: aScrollableView.
 
     "Created: / 30-06-2011 / 20:55:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified (format): / 27-07-2012 / 21:57:21 / cg"
 !
 
 setupCodeView: codeView2
@@ -861,11 +827,11 @@
 !TextDiffTool methodsFor:'initialization'!
 
 initialize
-    super initialize.
-    textAChanged := textBChanged := false.
 
-    "Modified: / 19-07-2011 / 19:43:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified (format): / 27-07-2012 / 21:57:08 / cg"
+    super initialize.
+    textAChanged := textBChanged := textBChanged := false.
+
+    "Modified: / 16-03-2012 / 12:40:15 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 initializeDiffView
@@ -878,19 +844,6 @@
 
 !TextDiffTool methodsFor:'private'!
 
-
-
-showNothing
-    self diffSpecHolder value: #nothingSpec
-
-    "Created: / 19-07-2011 / 19:34:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified (format): / 27-07-2012 / 21:57:28 / cg"
-!
-
-
-
-
-
  !