diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-09-20 00:58:50 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-09-20 10:11:42 +0100 |
commit | 90587ed9352bf3ca1ec07ff38a2b89acf646f088 (patch) | |
tree | 6a97889a0e8e2f9f0f303b4c73ffad91b96b60a5 /vcl | |
parent | 05139b62b2e2a773073caa3395a0824f5f6840c0 (diff) |
missed optimization opportunity from 9b6ea21 to drop unused ByteString
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/generic/fontmanager/fontcache.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/vcl/unx/generic/fontmanager/fontcache.cxx b/vcl/unx/generic/fontmanager/fontcache.cxx index b88d244b04e9..e60d50f5de04 100644 --- a/vcl/unx/generic/fontmanager/fontcache.cxx +++ b/vcl/unx/generic/fontmanager/fontcache.cxx @@ -748,10 +748,6 @@ void FontCache::updateFontCacheEntry( const PrintFontManager::PrintFont* pFont, { pCacheFont = clonePrintFont( pFont ); m_aCache[nDirID].m_aEntries[aFile].m_aEntry.push_back( pCacheFont ); - - ByteString aPath = rManager.getDirectory( nDirID ); - aPath.Append( '/' ); - aPath.Append( ByteString( aFile ) ); m_bDoFlush = true; } if( bFlush ) |