summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/sallayout.cxx
diff options
context:
space:
mode:
authorKhaled Hosny <khaledhosny@eglug.org>2016-11-26 20:10:21 +0200
committerKhaled Hosny <khaledhosny@eglug.org>2016-11-26 21:34:49 +0200
commitd76bd987ca2b853b85a9464787ae1fdc19321f5b (patch)
tree4cf17441be1d8964b378ebb04d161a29f4b409d6 /vcl/source/gdi/sallayout.cxx
parente17302a110c0dd143a4ea11855a3d2c736e49fdd (diff)
Do not check for SAL_NO_COMMON_LAYOUT any more
It has no effect except on Windows, and this will go out soon. Change-Id: I238518624e3288dea259e5ec9d5d76c8f691fd8c
Diffstat (limited to 'vcl/source/gdi/sallayout.cxx')
-rw-r--r--vcl/source/gdi/sallayout.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/source/gdi/sallayout.cxx b/vcl/source/gdi/sallayout.cxx
index d879df0e30c9..ebae19b0a968 100644
--- a/vcl/source/gdi/sallayout.cxx
+++ b/vcl/source/gdi/sallayout.cxx
@@ -772,8 +772,7 @@ bool SalLayout::IsSpacingGlyph( sal_GlyphId nGlyph )
bool SalLayout::UseCommonLayout()
{
- static bool bUse = getenv("SAL_NO_COMMON_LAYOUT") == nullptr;
- return bUse;
+ return true;
}
GenericSalLayout::GenericSalLayout()