DSVColumnView.st
changeset 3770 e24ada279c5e
parent 3757 05d3a8228fdd
child 3773 c4fcafeada43
--- a/DSVColumnView.st	Mon Oct 19 10:51:45 2009 +0200
+++ b/DSVColumnView.st	Mon Oct 19 11:28:29 2009 +0200
@@ -3135,14 +3135,19 @@
 !DSVColumnView methodsFor:'obsolete'!
 
 has3Dsepartors
+    <resource: #obsolete>
+    "shouldn't be used any more"
+
+    self obsoleteMethodWarning.
+    ^ self has3Dseparators
+!
+
+has3Dsepartors:aBool
+    <resource: #obsolete>
+ 
     "shouldn't be used any more"
     
-    ^ self has3Dseparators
-!
-
-has3Dsepartors:aBool 
-    "shouldn't be used any more"
-    
+    self obsoleteMethodWarning.
     self has3Dseparators:aBool
 ! !
 
@@ -4056,7 +4061,7 @@
 
 openEditorOnSelection
      |colIdx column rowIdx editSpec winGroup
-      edView filter keyBrdFwd selColor|
+      editor filter keyBrdFwd selColor|
 
     (shown and:[editView isNil]) ifFalse:[
         ^ self
@@ -4074,7 +4079,7 @@
     rowIdx isSequenceable ifTrue:[
         rowIdx := rowIdx at:1 ifAbsent:[ ^ self ].
     ].
-    editSpec := column editorAt:rowIdx.
+    editSpec := column specForEditorAt:rowIdx.
     editSpec isNil ifTrue:[^ self].
 
     autoScrollToColumn == true ifTrue:[
@@ -4095,8 +4100,8 @@
     ].
     editView viewBackground:selectionBackgroundColor.
 
-    edView := editSpec editor.
-    editView add:edView.
+    editor := editSpec editor.
+    editView add:editor.
     editSpec isStandardEditorSpec ifTrue:[
         filter := [:aKey | #( #Tab #CursorUp #CursorDown #Return ) includes:aKey ]
     ] ifFalse:[
@@ -4116,8 +4121,8 @@
         editValue addDependent:self.
     ].
     editView realize.
-    edView canTab:true.
-    winGroup focusView:edView.
+    editor canTab:true.
+    winGroup focusView:editor.
 
     self processAllExposeEvents.
 !
@@ -4559,9 +4564,9 @@
 !DSVColumnView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.250 2009-10-05 14:07:10 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.251 2009-10-19 09:28:29 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.250 2009-10-05 14:07:10 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.251 2009-10-19 09:28:29 cg Exp $'
 ! !