summaryrefslogtreecommitdiff
path: root/vcl/generic
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-11-13 20:29:02 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-11-14 07:36:01 +0000
commit74730d4ace1cf603575b052698e6de36b50e189b (patch)
treee16e5e4bebeb4c69fb69a1bbb257ed717539314b /vcl/generic
parent734fd917e38a087071ef1b31527846079ab29981 (diff)
callcatcher: remove freshly unused methods
Diffstat (limited to 'vcl/generic')
-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 )