Tools__VariableList.st
changeset 13457 630e14513fec
parent 13382 0ade5325ad8c
child 13458 842c7f563bd5
equal deleted inserted replaced
13456:ff46ea29cb9a 13457:630e14513fec
   540         ^ #()
   540         ^ #()
   541     ].
   541     ].
   542 
   542 
   543     hasSmallSense := ConfigurableFeatures includesFeature:'SmallSenseEnabled'.
   543     hasSmallSense := ConfigurableFeatures includesFeature:'SmallSenseEnabled'.
   544     hasSmallSense ifTrue:[
   544     hasSmallSense ifTrue:[
   545         smallSenseManager := (Smalltalk at: #SmallSenseManager) instance.
   545         smallSenseManager := (Smalltalk at: #'SmallSense::Manager') instance.
   546     ].
   546     ].
   547 
   547 
   548     showingClassVars := self showClassVarsInVariableList value == true.
   548     showingClassVars := self showClassVarsInVariableList value == true.
   549     sortByName := self sortVariablesByName value.
   549     sortByName := self sortVariablesByName value.
   550     "/ self assert:(sortByName isBoolean).
   550     "/ self assert:(sortByName isBoolean).
   644     ].
   644     ].
   645     ^ nameList
   645     ^ nameList
   646 
   646 
   647     "Created: / 05-02-2000 / 13:42:11 / cg"
   647     "Created: / 05-02-2000 / 13:42:11 / cg"
   648     "Modified: / 08-08-2011 / 16:20:58 / cg"
   648     "Modified: / 08-08-2011 / 16:20:58 / cg"
   649     "Modified: / 27-11-2011 / 17:29:47 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   649     "Modified: / 02-09-2013 / 12:39:15 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   650     "Modified (comment): / 16-12-2011 / 01:27:57 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   651 !
   650 !
   652 
   651 
   653 postBuildWith:aBuilder
   652 postBuildWith:aBuilder
   654     |listView|
   653     |listView|
   655 
   654 
   862 ! !
   861 ! !
   863 
   862 
   864 !VariableList class methodsFor:'documentation'!
   863 !VariableList class methodsFor:'documentation'!
   865 
   864 
   866 version_CVS
   865 version_CVS
   867     ^ '$Header: /cvs/stx/stx/libtool/Tools__VariableList.st,v 1.22 2013-08-27 12:57:33 cg Exp $'
   866     ^ '$Header: /cvs/stx/stx/libtool/Tools__VariableList.st,v 1.23 2013-09-02 11:39:43 vrany Exp $'
   868 ! !
   867 ! !
   869 
   868