#REFACTORING by stefan
authorStefan Vogel <sv@exept.de>
Fri, 06 Mar 2020 12:57:19 +0100
changeset 6236 ddfc83270532
parent 6235 9cd3a15b25ad
child 6237 12ad20ee2671
#REFACTORING by stefan class: DSVColumnView changed: #initStyle (send #passiveLevel instead of #offLevel) obsolete method usage
DSVColumnView.st
--- a/DSVColumnView.st	Thu Mar 05 09:52:24 2020 +0100
+++ b/DSVColumnView.st	Fri Mar 06 12:57:19 2020 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1997 by Claus Gittinger / eXept Software AG
               All Rights Reserved
@@ -3475,7 +3477,7 @@
     CheckToggleForm isNil ifTrue:[
         widget            := CheckToggle new.
         CheckToggleForm   := widget label.
-        CheckToggleLevel  := widget offLevel.
+        CheckToggleLevel  := widget passiveLevel.
         CheckToggleExtent := widget preferredExtent.
     ].
 
@@ -3499,7 +3501,7 @@
         widget            := ComboListView new.
         button            := widget menuButton.
         ComboButtonForm   := button label.
-        ComboButtonLevel  := button offLevel.
+        ComboButtonLevel  := button passiveLevel.
         ComboButtonExtent := (button preferredWidth) @ (widget preferredHeight).
     ].