SettingsDialog.st
changeset 7172 042c3e1278e4
parent 7100 e273c6f4602d
child 7473 3c436374677d
equal deleted inserted replaced
7171:1993e43597b4 7172:042c3e1278e4
  1134     ].
  1134     ].
  1135     super closeRequest
  1135     super closeRequest
  1136 !
  1136 !
  1137 
  1137 
  1138 initialize
  1138 initialize
  1139     |rootItem|
  1139     |rootItem lbl|
  1140 
  1140 
  1141     resources := AbstractLauncherApplication resources.
  1141     resources := AbstractLauncherApplication resources.
  1142     rootItem := self class itemClass new.
  1142     rootItem := self class itemClass new.
  1143     rootItem label:(resources string:'Settings') "allBold".
  1143     lbl := resources string:'Settings'.
  1144     rootItem nameString:(resources string:'Settings').
  1144     rootItem label:lbl "allBold".
       
  1145     rootItem nameString:lbl.
  1145     rootItem icon:self class settingsIcon.
  1146     rootItem icon:self class settingsIcon.
  1146     self applicationList root:rootItem; showRoot:true "false".
  1147     self applicationList root:rootItem; showRoot:true "false".
  1147     self selectedItem value:rootItem.
  1148     self selectedItem value:rootItem.
  1148     super initialize.
  1149     super initialize.
  1149 !
  1150 !
  1276 ! !
  1277 ! !
  1277 
  1278 
  1278 !SettingsDialog class methodsFor:'documentation'!
  1279 !SettingsDialog class methodsFor:'documentation'!
  1279 
  1280 
  1280 version
  1281 version
  1281     ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.67 2006-09-08 17:22:56 cg Exp $'
  1282     ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.68 2006-09-18 08:54:25 cg Exp $'
  1282 ! !
  1283 ! !
  1283 
  1284 
  1284 SettingsDialog initialize!
  1285 SettingsDialog initialize!