Issue 4030 in pharo: defaultBackgroundColor should not use self theme

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Issue 4030 in pharo: defaultBackgroundColor should not use self theme

pharo
Status: Accepted
Owner: marianopeck

New issue 4030 by marianopeck: defaultBackgroundColor should not use self  
theme
http://code.google.com/p/pharo/issues/detail?id=4030

Object >> defaultBackgroundColor  from  *Tools-Base

defaultBackgroundColor
        "Answer the color to be used as the base window color for a window whose  
model is an object of the receiver's class"
       
        ^ self theme  windowColorFor: self


But Object dnu #them.

So...changed to:

defaultBackgroundColor
        "Answer the color to be used as the base window color for a window whose  
model is an object of the receiver's class"
       
        "I don't want to do a self theme  because otherwise I will need to  
implement it on Object"
        ^  UITheme current  windowColorFor: self
       


Reply | Threaded
Open this post in threaded view
|

Re: Issue 4030 in pharo: defaultBackgroundColor should not use self theme

pharo
Updates:
        Status: FixToInclude
        Labels: Milestone-1.3

Comment #1 on issue 4030 by marianopeck: defaultBackgroundColor should not  
use self theme
http://code.google.com/p/pharo/issues/detail?id=4030

Name:  
SLICE-Issue-4030-defaultBackgroundColor-should-not-use-self-theme-MarianoMartinezPeck.1
Author: MarianoMartinezPeck
Time: 15 April 2011, 5:13:24 pm
UUID: dc3d1b20-ff43-422c-96fd-7fd265e93ec3
Ancestors:
Dependencies: Tools-MarianoMartinezPeck.581

Fix to 4030


Reply | Threaded
Open this post in threaded view
|

Re: Issue 4030 in pharo: defaultBackgroundColor should not use self theme

pharo
Updates:
        Status: Closed

Comment #2 on issue 4030 by [hidden email]: defaultBackgroundColor  
should not use self theme
http://code.google.com/p/pharo/issues/detail?id=4030

in 13159