Tools__CodeView2.st
changeset 15130 1e1510171b15
parent 14997 df3528dd1c58
child 15170 a4ce93833783
--- a/Tools__CodeView2.st	Sat Jan 31 02:59:44 2015 +0100
+++ b/Tools__CodeView2.st	Sat Jan 31 03:00:20 2015 +0100
@@ -28,42 +28,42 @@
 "{ NameSpace: Tools }"
 
 SimpleView subclass:#CodeView2
-        instanceVariableNames:'gutterView textView textViewScroller methodHolder languageHolder
-                classHolder browserHolder codeAspect modifiedChannel
-                showGutterChannel showAcceptCancelBarChannel modeHolder services
-                servicesFromClient syntaxElements currentParseNodeHolder
-                currentBlockNodeHolder syntaxElementSelection highlightEmphasis
-                diffMode synchronizedCodeViews'
-        classVariableNames:'TraceSelectors'
-        poolDictionaries:''
-        category:'Interface-CodeView'
+	instanceVariableNames:'gutterView textView textViewScroller methodHolder languageHolder
+		classHolder browserHolder codeAspect modifiedChannel
+		showGutterChannel showAcceptCancelBarChannel modeHolder services
+		servicesFromClient syntaxElements currentParseNodeHolder
+		currentBlockNodeHolder syntaxElementSelection highlightEmphasis
+		diffMode synchronizedCodeViews'
+	classVariableNames:'TraceSelectors'
+	poolDictionaries:''
+	category:'Interface-CodeView'
 !
 
 AbstractBackground subclass:#AnnotationShowingScrollerBackground
-        instanceVariableNames:'annotations textView'
-        classVariableNames:''
-        poolDictionaries:''
-        privateIn:CodeView2
+	instanceVariableNames:'annotations textView'
+	classVariableNames:''
+	poolDictionaries:''
+	privateIn:CodeView2
 !
 
 SimpleView subclass:#GutterView
-        instanceVariableNames:'codeView textView textViewScroller widthAcceptCancel
-                widthAnnotations widthDiffInfo numberOfLines acceptColor
-                cancelColor diffColor menuHolder currentBlockNodeHolder
-                showLineNumbers blockWaitingForPossibleDoubleClick'
-        classVariableNames:''
-        poolDictionaries:''
-        privateIn:CodeView2
+	instanceVariableNames:'codeView textView textViewScroller widthAcceptCancel
+		widthAnnotations widthDiffInfo numberOfLines acceptColor
+		cancelColor diffColor menuHolder currentBlockNodeHolder
+		showLineNumbers blockWaitingForPossibleDoubleClick'
+	classVariableNames:''
+	poolDictionaries:''
+	privateIn:CodeView2
 !
 
 CodeView subclass:#TextView
-        instanceVariableNames:'listOriginal codeView gutterView diffMode deletedLines
-                insertedLines lastFirstLine changedLines scrollInProgress
-                originDiffText emptyLines changedDiffText suppressNotifications
-                reallyModifiedChannel'
-        classVariableNames:''
-        poolDictionaries:''
-        privateIn:CodeView2
+	instanceVariableNames:'listOriginal codeView gutterView diffMode deletedLines
+		insertedLines lastFirstLine changedLines scrollInProgress
+		originDiffText emptyLines changedDiffText suppressNotifications
+		reallyModifiedChannel'
+	classVariableNames:''
+	poolDictionaries:''
+	privateIn:CodeView2
 !
 
 !CodeView2 class methodsFor:'documentation'!
@@ -3047,6 +3047,10 @@
     "Modified: / 02-05-2010 / 19:13:32 / Jakub <zelenja7@fel.cvut.cz>"
 !
 
+codeView
+    ^ codeView
+!
+
 contents: text
 
     super contents: text.
@@ -4221,15 +4225,15 @@
 !CodeView2 class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.181 2014-12-05 13:40:12 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.182 2015-01-31 02:00:20 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.181 2014-12-05 13:40:12 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.182 2015-01-31 02:00:20 cg Exp $'
 !
 
 version_SVN
-    ^ '$Id: Tools__CodeView2.st,v 1.181 2014-12-05 13:40:12 cg Exp $'
+    ^ '$Id: Tools__CodeView2.st,v 1.182 2015-01-31 02:00:20 cg Exp $'
 ! !