class: NoteBookView
authorStefan Vogel <sv@exept.de>
Tue, 18 Feb 2014 17:47:02 +0100
changeset 4514 c83b77fa9356
parent 4513 6f14d468c903
child 4515 6ca475e94989
class: NoteBookView changed: #initStyle fetch color via method call instead of class variable
NoteBookView.st
--- a/NoteBookView.st	Tue Feb 18 17:46:24 2014 +0100
+++ b/NoteBookView.st	Tue Feb 18 17:47:02 2014 +0100
@@ -2271,7 +2271,7 @@
     self font:self class defaultFont.
     drawLightColor := Color veryLightGray onDevice:graphicsDevice.
 
-    clr := DefaultForegroundColor ? Black.
+    clr := DefaultForegroundColor ? self blackColor.
     foregroundColor := clr onDevice:graphicsDevice.
 
     clr := DefaultBackgroundColor ? viewBackground.
@@ -3791,10 +3791,10 @@
 !NoteBookView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/NoteBookView.st,v 1.182 2014-02-18 14:59:55 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/NoteBookView.st,v 1.183 2014-02-18 16:47:02 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg2/NoteBookView.st,v 1.182 2014-02-18 14:59:55 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/NoteBookView.st,v 1.183 2014-02-18 16:47:02 stefan Exp $'
 ! !