summaryrefslogtreecommitdiff
path: root/vcl/inc/fontcache.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/inc/fontcache.hxx')
-rw-r--r--vcl/inc/fontcache.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/inc/fontcache.hxx b/vcl/inc/fontcache.hxx
index 8a9e736605d6..ad2a8bbd10ac 100644
--- a/vcl/inc/fontcache.hxx
+++ b/vcl/inc/fontcache.hxx
@@ -43,7 +43,7 @@ class VCL_PLUGIN_PUBLIC FontCache
FontCacheEntry m_aEntry;
};
- typedef boost::unordered_map< ::rtl::OString, FontFile, ::rtl::OStringHash > FontDirMap;
+ typedef boost::unordered_map< OString, FontFile, OStringHash > FontDirMap;
struct FontDir
{
sal_Int64 m_nTimestamp;
@@ -71,15 +71,15 @@ public:
FontCache();
~FontCache();
- bool getFontCacheFile( int nDirID, const rtl::OString& rFile, std::list< PrintFontManager::PrintFont* >& rNewFonts ) const;
+ bool getFontCacheFile( int nDirID, const OString& rFile, std::list< PrintFontManager::PrintFont* >& rNewFonts ) const;
void updateFontCacheEntry( const PrintFontManager::PrintFont*, bool bFlush );
void markEmptyDir( int nDirID, bool bNoFiles = true );
// returns false for non cached directory
// a cached but empty directory will return true but not append anything
- bool listDirectory( const rtl::OString& rDir, std::list< PrintFontManager::PrintFont* >& rNewFonts ) const;
+ bool listDirectory( const OString& rDir, std::list< PrintFontManager::PrintFont* >& rNewFonts ) const;
// returns true for directoris that contain only user overridden fonts
- bool scanAdditionalFiles( const rtl::OString& rDir );
+ bool scanAdditionalFiles( const OString& rDir );
void flush();
};