summaryrefslogtreecommitdiff
path: root/vcl/generic/glyphs/glyphcache.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/generic/glyphs/glyphcache.cxx')
-rw-r--r--vcl/generic/glyphs/glyphcache.cxx17
1 files changed, 0 insertions, 17 deletions
diff --git a/vcl/generic/glyphs/glyphcache.cxx b/vcl/generic/glyphs/glyphcache.cxx
index 42dddf9912ea..39adb9610dad 100644
--- a/vcl/generic/glyphs/glyphcache.cxx
+++ b/vcl/generic/glyphs/glyphcache.cxx
@@ -413,23 +413,6 @@ void ServerFont::GarbageCollect( long nMinLruIndex )
}
}
-bool ServerFont::IsGlyphInvisible( int nGlyphIndex )
-{
- if (!mbCollectedZW)
- {
- mnZWJ = GetGlyphIndex( 0x200D );
- mnZWNJ = GetGlyphIndex( 0x200C );
- mbCollectedZW = true;
- }
-
- if( !nGlyphIndex ) // don't hide the NotDef glyph
- return false;
- if( (nGlyphIndex == mnZWNJ) || (nGlyphIndex == mnZWJ) )
- return true;
-
- return false;
-}
-
// =======================================================================
ImplServerFontEntry::ImplServerFontEntry( FontSelectPattern& rFSD )