diff -r aac0f12a3327 -r 1dda95be3d40 Tools__TextDiffTool.st --- a/Tools__TextDiffTool.st Tue Jan 15 12:03:21 2013 +0000 +++ b/Tools__TextDiffTool.st Wed Jan 16 11:53:38 2013 +0000 @@ -512,6 +512,15 @@ ]. ! +diffView +"/ diffView isNil ifTrue:[ + diffView := self initializeDiffView. +"/ ]. + ^diffView + + "Created: / 16-01-2013 / 09:45:49 / Jan Vrany " +! + labelHolder "return/create the 'labelAHolder' value holder (automatically generated)" @@ -794,6 +803,13 @@ textAChanged := textBChanged := textBChanged := false. "Modified: / 16-03-2012 / 12:40:15 / Jan Vrany " +! + +initializeDiffView + + self subclassResponsibility + + "Created: / 16-01-2013 / 09:45:49 / Jan Vrany " ! ! !TextDiffTool methodsFor:'testing'! @@ -819,5 +835,5 @@ !TextDiffTool class methodsFor:'documentation'! version_SVN - ^ '$Id: Tools__TextDiffTool.st 8027 2012-07-26 18:46:57Z vranyj1 $' + ^ '$Id: Tools__TextDiffTool.st 8087 2013-01-16 11:53:38Z vranyj1 $' ! !