AbstractLauncherApplication.st
changeset 18792 d370c81b327a
parent 18678 615e0ad7a8ca
child 18804 5e06abe51151
equal deleted inserted replaced
18791:d4648fa1cc9c 18792:d370c81b327a
   948                                         v device == Display ifFalse:[
   948                                         v device == Display ifFalse:[
   949                                             l := l , ' [' , (v device displayName ? '?') , ']'
   949                                             l := l , ' [' , (v device displayName ? '?') , ']'
   950                                         ].
   950                                         ].
   951                                         ((wg := v windowGroup) notNil
   951                                         ((wg := v windowGroup) notNil
   952                                         and:[(p := wg process) notNil
   952                                         and:[(p := wg process) notNil
   953                                         and:[p state ~~ #dead]]) ifTrue:[
   953                                         and:[p isDead not]]) ifTrue:[
   954                                             l
   954                                             l
   955                                         ] ifFalse:[
   955                                         ] ifFalse:[
   956                                             l , ' (dead ?)'
   956                                             l , ' (dead ?)'
   957                                         ]
   957                                         ]
   958                                       ].
   958                                       ].
   980     box extent:400@300.
   980     box extent:400@300.
   981     box open.
   981     box open.
   982     ^ nil
   982     ^ nil
   983 
   983 
   984     "Modified: / 27-04-2012 / 12:59:37 / cg"
   984     "Modified: / 27-04-2012 / 12:59:37 / cg"
       
   985     "Modified: / 29-05-2019 / 01:02:03 / Claus Gittinger"
   985 !
   986 !
   986 
   987 
   987 openApplication: classOrClassName
   988 openApplication: classOrClassName
   988      "open an application, given by the classe name."
   989      "open an application, given by the classe name."
   989 
   990