class: MemoryMonitorView
authorStefan Vogel <sv@exept.de>
Tue, 18 Feb 2014 17:46:42 +0100
changeset 13960 d3e937384107
parent 13959 a1126eb2fcfd
child 13961 8139baad1f4e
class: MemoryMonitorView changed: #initialize fetch color via method call instead of class variable
MemoryMonitorView.st
--- a/MemoryMonitorView.st	Tue Feb 18 17:21:41 2014 +0100
+++ b/MemoryMonitorView.st	Tue Feb 18 17:46:42 2014 +0100
@@ -630,7 +630,7 @@
                             + ObjectMemory symSpaceSize
                             + ObjectMemory newSpaceSize.
 
-    viewBackground := Black.
+    viewBackground := self blackColor.
 
     self graphicsDevice hasColors ifTrue:[
         newColor := Color orange. "/ yellow.
@@ -1046,10 +1046,10 @@
 !MemoryMonitorView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/MemoryMonitorView.st,v 1.23 2014-02-18 16:21:41 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/MemoryMonitorView.st,v 1.24 2014-02-18 16:46:42 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/MemoryMonitorView.st,v 1.23 2014-02-18 16:21:41 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/MemoryMonitorView.st,v 1.24 2014-02-18 16:46:42 stefan Exp $'
 ! !