SettingsDialog.st
changeset 9558 89e606407c4d
parent 9425 ca49e390fe41
child 9608 0f2613d5fc3f
equal deleted inserted replaced
9557:14b8fe98a8ed 9558:89e606407c4d
   629 !
   629 !
   630 
   630 
   631 sendLoadRequestToAll
   631 sendLoadRequestToAll
   632     self applicationList do:[:applItem | 
   632     self applicationList do:[:applItem | 
   633         (applItem isCategory not and:[applItem application notNil]) ifTrue:[
   633         (applItem isCategory not and:[applItem application notNil]) ifTrue:[
   634             ^ applItem application readSettings
   634             applItem application readSettings.
   635         ]
   635         ]
   636     ].
   636     ].
   637     ^ true
   637 
       
   638     "Modified: / 24-08-2010 / 18:41:36 / sr"
   638 !
   639 !
   639 
   640 
   640 sendSaveRequestToAll
   641 sendSaveRequestToAll
   641     self applicationList do:[ : applItem |
   642     self applicationList do:[ : applItem |
   642         (applItem isCategory not and:[applItem application notNil]) ifTrue:[
   643         (applItem isCategory not and:[applItem application notNil]) ifTrue:[
  1416 displayString
  1417 displayString
  1417 
  1418 
  1418     ^ super printString, ' [', (label isText ifTrue:[label string] ifFalse:[label]) ,']'
  1419     ^ super printString, ' [', (label isText ifTrue:[label string] ifFalse:[label]) ,']'
  1419 !
  1420 !
  1420 
  1421 
       
  1422 printOn:aStream
       
  1423     aStream 
       
  1424         nextPutAll:self class nameWithoutPrefix;
       
  1425         nextPutAll:' ';
       
  1426         nextPutAll:self label ? '???'.
       
  1427 
       
  1428     "Created: / 24-08-2010 / 18:36:17 / sr"
       
  1429 !
       
  1430 
  1421 printString
  1431 printString
  1422 
  1432 
  1423     ^ super printString, ' [', (label isText ifTrue:[label string] ifFalse:[label]) ,']'
  1433     ^ super printString, ' [', (label isText ifTrue:[label string] ifFalse:[label]) ,']'
  1424 ! !
  1434 ! !
  1425 
  1435 
  1436 ! !
  1446 ! !
  1437 
  1447 
  1438 !SettingsDialog class methodsFor:'documentation'!
  1448 !SettingsDialog class methodsFor:'documentation'!
  1439 
  1449 
  1440 version
  1450 version
  1441     ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.87 2010-04-26 15:27:50 ca Exp $'
  1451     ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.88 2010-08-24 16:43:02 sr Exp $'
  1442 !
  1452 !
  1443 
  1453 
  1444 version_CVS
  1454 version_CVS
  1445     ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.87 2010-04-26 15:27:50 ca Exp $'
  1455     ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.88 2010-08-24 16:43:02 sr Exp $'
  1446 ! !
  1456 ! !
  1447 
  1457 
  1448 SettingsDialog initialize!
  1458 SettingsDialog initialize!