summaryrefslogtreecommitdiff
path: root/vcl/source/font/fontcache.cxx
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2016-01-09 12:58:19 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2016-01-09 13:00:11 +1100
commiteba202b65accc0b4c4e08346c8e579eea58342f4 (patch)
tree9ef7ba269c87d7dd4600ad1351e9c83770af8d6c /vcl/source/font/fontcache.cxx
parent85ac3cd63f6720ff2d3c4b7491f4ad296219fa53 (diff)
vcl: rename m_pFontCache to mpFontCache in LogicalFontInstance
This is the only variable in LogicalFontInstance with m_ as the prefix, so changing to mpFontCache for consistency. Also small tab cleanup in fontmanager.hxx Change-Id: Id79392337795259568fbe71efb5200f1e31219a8
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;