#DOCUMENTATION by stefan
authorStefan Vogel <sv@exept.de>
Mon, 19 Sep 2016 16:29:19 +0200
changeset 3747 6cf2e1cecba3
parent 3746 57a7dc5fde0c
child 3749 78f1a8829bf7
child 3750 73f907f202bc
#DOCUMENTATION by stefan class: Icon comment/format in: #releaseCachedIconsFromDevice:
Icon.st
--- a/Icon.st	Wed Sep 14 10:44:25 2016 +0200
+++ b/Icon.st	Mon Sep 19 16:29:19 2016 +0200
@@ -609,12 +609,13 @@
 releaseCachedIconsFromDevice:aGraphicsDevice 
     KnownIcons do:[:eachImage | 
         eachImage graphicsDevice == aGraphicsDevice ifTrue:[
-            eachImage release
+            eachImage release.
         ]
     ].
 
     "
-     Icon releaseIconsFromDevice:Display"
+     Icon releaseCachedIconsFromDevice:Display
+    "
 ! !
 
 !Icon class methodsFor:'documentation'!