diff options
-rw-r--r-- | vcl/generic/fontmanager/fontcache.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/generic/fontmanager/fontcache.cxx b/vcl/generic/fontmanager/fontcache.cxx index 3dcba186f49f..7448570c8ada 100644 --- a/vcl/generic/fontmanager/fontcache.cxx +++ b/vcl/generic/fontmanager/fontcache.cxx @@ -37,7 +37,6 @@ #include <cstdio> #endif -#define FONTCACHEFILE "/user/psprint/pspfontcache" #define CACHE_MAGIC "LibreOffice PspFontCacheFile format 6" using namespace std; @@ -54,7 +53,7 @@ FontCache::FontCache() m_aCacheFile = getOfficePath( UserPath ); if( !m_aCacheFile.isEmpty() ) { - m_aCacheFile += FONTCACHEFILE; + m_aCacheFile += "/user/psprint/pspfontcache"; read(); } } |