SettingsDialog.st
changeset 14968 b6fc994956c4
parent 14872 ed831f9b6aaf
child 15048 4e8598056078
equal deleted inserted replaced
14967:e92d9ac3f138 14968:b6fc994956c4
   752     item := self selectedItem value.
   752     item := self selectedItem value.
   753     (item isNil or:[item isCategory or:[item application isNil]]) ifTrue:[ ^ self].
   753     (item isNil or:[item isCategory or:[item application isNil]]) ifTrue:[ ^ self].
   754     item application help.
   754     item application help.
   755 !
   755 !
   756 
   756 
   757 reopenLauncher
   757 reopenLauncher          
   758     self requestor notNil ifTrue:[
   758     |app|
   759         self requestor reopenLauncher.
   759 
       
   760     (app := self requestor) notNil ifTrue:[
       
   761         app reopenLauncher.
   760     ] ifFalse:[
   762     ] ifFalse:[
   761         NewLauncher current reopenLauncher.
   763         NewLauncher current reopenLauncher.
   762     ].
   764     ].
   763 !
   765 !
   764 
   766 
  1958 ! !
  1960 ! !
  1959 
  1961 
  1960 !SettingsDialog class methodsFor:'documentation'!
  1962 !SettingsDialog class methodsFor:'documentation'!
  1961 
  1963 
  1962 version
  1964 version
  1963     ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.122 2014-11-20 14:27:13 ca Exp $'
  1965     ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.123 2014-12-02 17:46:00 cg Exp $'
  1964 !
  1966 !
  1965 
  1967 
  1966 version_CVS
  1968 version_CVS
  1967     ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.122 2014-11-20 14:27:13 ca Exp $'
  1969     ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.123 2014-12-02 17:46:00 cg Exp $'
  1968 ! !
  1970 ! !
  1969 
  1971 
  1970 
  1972 
  1971 SettingsDialog initialize!
  1973 SettingsDialog initialize!