diff options
author | Philipp Lohmann [pl] <Philipp.Lohmann@Sun.COM> | 2010-03-03 17:30:14 +0100 |
---|---|---|
committer | Philipp Lohmann [pl] <Philipp.Lohmann@Sun.COM> | 2010-03-03 17:30:14 +0100 |
commit | a6016eae584f52da38d0930a365e5a5508bc8baa (patch) | |
tree | 7cb0c7d937a5869788a083b27602d04f6eb829e3 /vcl/source | |
parent | 696a02e0da74aba9875f1bd2ab1cd188ce566246 (diff) |
native0: #161727# implement latest UX changes
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/window/window.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index 516bc53d8920..8906edaa5046 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -502,6 +502,13 @@ void Window::ImplUpdateGlobalSettings( AllSettings& rSettings, BOOL bCallHdl ) } } + static const char* pEnvHC = getenv( "SAL_FORCE_HC" ); + if( pEnvHC && *pEnvHC ) + { + aStyleSettings.SetHighContrastMode( TRUE ); + rSettings.SetStyleSettings( aStyleSettings ); + } + #ifdef DBG_UTIL // Evt. AppFont auf Fett schalten, damit man feststellen kann, // ob fuer die Texte auf anderen Systemen genuegend Platz |