Icon.st
changeset 4249 d192d486c7f6
parent 4248 f663c36d3bfc
equal deleted inserted replaced
4248:f663c36d3bfc 4249:d192d486c7f6
   718     
   718     
   719     self flushCachedIcons
   719     self flushCachedIcons
   720 !
   720 !
   721 
   721 
   722 releaseCachedIconsFromDevice:aGraphicsDevice 
   722 releaseCachedIconsFromDevice:aGraphicsDevice 
   723     KnownIcons do:[:eachImage | 
   723     KnownIcons do:[:eachImage |
   724         eachImage graphicsDevice == aGraphicsDevice ifTrue:[
   724         eachImage notNil ifTrue:[
   725             eachImage release.
   725             eachImage graphicsDevice == aGraphicsDevice ifTrue:[
   726         ]
   726                 eachImage release.
       
   727             ]
       
   728         ].
   727     ].
   729     ].
   728 
   730 
   729     "
   731     "
   730      Icon releaseCachedIconsFromDevice:Display
   732      Icon releaseCachedIconsFromDevice:Display
   731     "
   733     "
       
   734 
       
   735     "Modified: / 26-03-2019 / 00:15:09 / Claus Gittinger"
   732 ! !
   736 ! !
   733 
   737 
   734 !Icon class methodsFor:'documentation'!
   738 !Icon class methodsFor:'documentation'!
   735 
   739 
   736 version
   740 version