diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-03 21:23:41 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-03 21:24:09 +1100 |
commit | f16433ec2cba13b78022f1bf6e78bcf26fb22be8 (patch) | |
tree | 73463d22d4cb8c32a712a9d604c39a0f7d91d7ba | |
parent | 8c279f01597cea9850ab68add6fa3370eb61c1b2 (diff) |
chart2: I think we can get rid of OLDRENDER now
Change-Id: I4919d4a75bdd7dc0398f5829a25f2908e97b0eaf
-rw-r--r-- | chart2/source/view/main/3DChartObjects.cxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/chart2/source/view/main/3DChartObjects.cxx b/chart2/source/view/main/3DChartObjects.cxx index 56cc3232876f..1a7c500ce8ad 100644 --- a/chart2/source/view/main/3DChartObjects.cxx +++ b/chart2/source/view/main/3DChartObjects.cxx @@ -84,11 +84,7 @@ const TextCacheItem& TextCache::getText(OUString const & rText, bool bIs3dText) else aFont = pDevice->GetFont(); aFont.SetSize(Size(0, 96)); - static bool bOldRender = getenv("OLDRENDER"); - if (bOldRender) - aFont.SetColor(COL_BLACK); - else - aFont.SetColor(COL_GREEN); // RGB_COLORDATA(0xf0, 0xf0, 0xf0)); + aFont.SetColor(COL_GREEN); // RGB_COLORDATA(0xf0, 0xf0, 0xf0)); pDevice->SetFont(aFont); pDevice->Erase(); |