summaryrefslogtreecommitdiff
path: root/vcl/source/fontsubset
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-07-28 21:12:38 +0200
committerThomas Arnhold <thomas@arnhold.org>2011-07-29 11:09:01 +0200
commitc817dcb87316a0551a30c173ce5e8cdbe4e4bf7a (patch)
treea966d143b74383c547525267cb56ab95fadf3b3e /vcl/source/fontsubset
parentc660d8a1160231f0a744a4b3e6772d58afe85bfd (diff)
callcatcher: remove unused methods
Diffstat (limited to 'vcl/source/fontsubset')
-rw-r--r--vcl/source/fontsubset/cff.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/vcl/source/fontsubset/cff.cxx b/vcl/source/fontsubset/cff.cxx
index b6516fcc624b..231fe4e5fb51 100644
--- a/vcl/source/fontsubset/cff.cxx
+++ b/vcl/source/fontsubset/cff.cxx
@@ -453,7 +453,6 @@ public: // TODO: is public really needed?
void addHints( bool bVerticalHints);
int getHorzHintCount( void) const { return (mnHorzHintSize/2);}
int getVertHintCount( void) const { return (mnHintSize-mnHorzHintSize)/2;}
- void getHintPair( int nIndex, ValType* nMin, ValType* nEnd) const;
// accessing other charstring specifics
bool hasCharWidth( void) const { return (maCharWidth > 0);}
@@ -582,18 +581,6 @@ void CffSubsetterContext::addHints( bool bVerticalHints)
// --------------------------------------------------------------------
-void CffSubsetterContext::getHintPair( int nIndex, ValType* pMin, ValType* pEnd) const
-{
- nIndex *= 2;
- assert( nIndex < mnHintSize);
- assert( nIndex >= 0);
- const ValType* pHint = &mnHintStack[ nIndex ];
- *pMin = pHint[0];
- *pEnd = pHint[1];
-}
-
-// --------------------------------------------------------------------
-
void CffSubsetterContext::setCharStringType( int nVal)
{
switch( nVal) {