To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=61174





------- Additional comments from [EMAIL PROTECTED] Fri Jan 27 15:57:47 -0800 
2006 -------
ericb->ssa 

Please correct me if I'm wrong :

DtIntegrator::GetSystemLook uses StyleSettings::StyleSettings() ( found in 
setting.cxx)  
In setting.cxx, StyleSettings::StyleSettings() allocate memory for a pointer on 
ImplStyleData(), 
and  ImplStyleData() does contain a lot of definitions, included colors.

What Ì do not understand : can we modify directly the content of 
ImpleStyleData(), or do we create a 
new similar object (where ? ). For example replacing directly could give :

maFaceColor  = Color (COL_LIGHTGRAY);
+ all color changes to test 
with : 

replaced by :

#ifdef MACOSX
  maFaceColor  = Color (RGB_COLORDATA(0xF4, 0xF4, 0xF4));
  + all color changes to test on Mac OS X
(same for COL_BLUE)
#else
  maFaceColor  = Color (COL_LIGHTGRAY);
  + all collor changes for !MACOSX
#endif 
(same for COL_BLUE)

Or something completely different must be done ?


Thank's in advance for  any help/sugggestion




---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to