summaryrefslogtreecommitdiff
path: root/vcl/source/font/fontcache.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/font/fontcache.cxx')
-rw-r--r--vcl/source/font/fontcache.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/font/fontcache.cxx b/vcl/source/font/fontcache.cxx
index 41723f85d63a..25fe88910deb 100644
--- a/vcl/source/font/fontcache.cxx
+++ b/vcl/source/font/fontcache.cxx
@@ -217,7 +217,7 @@ LogicalFontInstance* ImplFontCache::GetFontInstance( PhysicalFontCollection* pFo
{
// create a new logical font instance from this physical font face
pFontInstance = pFontData->CreateFontInstance( aFontSelData );
- pFontInstance->m_pFontCache = this;
+ pFontInstance->mpFontCache = this;
// if we're subtituting from or to a symbol font we may need a symbol
// conversion table
@@ -284,7 +284,7 @@ LogicalFontInstance* ImplFontCache::GetGlyphFallbackFont( PhysicalFontCollection
void ImplFontCache::Acquire(LogicalFontInstance* pFontInstance)
{
- assert(pFontInstance->m_pFontCache == this);
+ assert(pFontInstance->mpFontCache == this);
if (0 == pFontInstance->mnRefCount++)
--mnRef0Count;