diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-10 21:37:22 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-10 12:15:42 +0000 |
commit | 536d0e27f05d9db7469bd8a3571c87b2ea885367 (patch) | |
tree | 304d45792300b026f22a26db6c748def48d979ec /vcl/quartz | |
parent | 36ccb37eee589c444445ab2d05a5c0dff6585a2f (diff) |
Cleanup FontCharMapPtr variable prefixes
Change-Id: Ib106b91ab71ee45d5ad469d0beaf4ebaef8b57e1
Reviewed-on: https://gerrit.libreoffice.org/21306
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'vcl/quartz')
-rw-r--r-- | vcl/quartz/salgdi.cxx | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/vcl/quartz/salgdi.cxx b/vcl/quartz/salgdi.cxx index 334eea1a3509..2403e9b8b520 100644 --- a/vcl/quartz/salgdi.cxx +++ b/vcl/quartz/salgdi.cxx @@ -60,8 +60,8 @@ CoreTextFontFace::CoreTextFontFace( const CoreTextFontFace& rSrc ) , mbHasOs2Table( rSrc.mbHasOs2Table ) , mbCmapEncodingRead( rSrc.mbCmapEncodingRead ) { - if( rSrc.mpCharMap ) - mpCharMap = rSrc.mpCharMap; + if( rSrc.mxCharMap ) + mxCharMap = rSrc.mxCharMap; } CoreTextFontFace::CoreTextFontFace( const FontAttributes& rDFA, sal_IntPtr nFontId ) @@ -76,9 +76,9 @@ CoreTextFontFace::CoreTextFontFace( const FontAttributes& rDFA, sal_IntPtr nFont CoreTextFontFace::~CoreTextFontFace() { - if( mpCharMap ) + if( mxCharMap ) { - mpCharMap = nullptr; + mxCharMap = nullptr; } } @@ -92,26 +92,26 @@ static unsigned GetUShort( const unsigned char* p ){return((p[0]<<8)+p[1]);} const FontCharMapPtr CoreTextFontFace::GetFontCharMap() const { // return the cached charmap - if( mpCharMap ) - return mpCharMap; + if( mxCharMap ) + return mxCharMap; // set the default charmap FontCharMapPtr pCharMap( new FontCharMap() ); - mpCharMap = pCharMap; + mxCharMap = pCharMap; // get the CMAP byte size // allocate a buffer for the CMAP raw data const int nBufSize = GetFontTable( "cmap", nullptr ); DBG_ASSERT( (nBufSize > 0), "CoreTextFontFace::GetFontCharMap : GetFontTable1 failed!\n"); if( nBufSize <= 0 ) - return mpCharMap; + return mxCharMap; // get the CMAP raw data ByteVector aBuffer( nBufSize ); const int nRawLength = GetFontTable( "cmap", &aBuffer[0] ); DBG_ASSERT( (nRawLength > 0), "CoreTextFontFace::GetFontCharMap : GetFontTable2 failed!\n"); if( nRawLength <= 0 ) - return mpCharMap; + return mxCharMap; DBG_ASSERT( (nBufSize==nRawLength), "CoreTextFontFace::GetFontCharMap : ByteCount mismatch!\n"); @@ -119,12 +119,12 @@ const FontCharMapPtr CoreTextFontFace::GetFontCharMap() const CmapResult aCmapResult; if( ParseCMAP( &aBuffer[0], nRawLength, aCmapResult ) ) { - FontCharMapPtr pDefFontCharMap( new FontCharMap(aCmapResult) ); + FontCharMapPtr xDefFontCharMap( new FontCharMap(aCmapResult) ); // create the matching charmap - mpCharMap = pDefFontCharMap; + mxCharMap = xDefFontCharMap; } - return mpCharMap; + return mxCharMap; } bool CoreTextFontFace::GetFontCapabilities(vcl::FontCapabilities &rFontCapabilities) const @@ -459,8 +459,8 @@ const FontCharMapPtr AquaSalGraphics::GetFontCharMap() const { if( !mpFontData ) { - FontCharMapPtr pFontCharMap( new FontCharMap() ); - return pFontCharMap; + FontCharMapPtr xFontCharMap( new FontCharMap() ); + return xFontCharMap; } return mpFontData->GetFontCharMap(); @@ -741,14 +741,14 @@ void AquaSalGraphics::GetGlyphWidths( const PhysicalFontFace* pFontData, bool bV free( const_cast<TTSimpleGlyphMetrics *>(pGlyphMetrics) ); } - FontCharMapPtr pMap = mpFontData->GetFontCharMap(); - DBG_ASSERT( pMap && pMap->GetCharCount(), "no charmap" ); + FontCharMapPtr xFCMap = mpFontData->GetFontCharMap(); + DBG_ASSERT( xFCMap && xFCMap->GetCharCount(), "no charmap" ); // get unicode<->glyph encoding - // TODO? avoid sft mapping by using the pMap itself - int nCharCount = pMap->GetCharCount(); - sal_uInt32 nChar = pMap->GetFirstChar(); - for( ; --nCharCount >= 0; nChar = pMap->GetNextChar( nChar ) ) + // TODO? avoid sft mapping by using the xFCMap itself + int nCharCount = xFCMap->GetCharCount(); + sal_uInt32 nChar = xFCMap->GetFirstChar(); + for( ; --nCharCount >= 0; nChar = xFCMap->GetNextChar( nChar ) ) { if( nChar > 0xFFFF ) // TODO: allow UTF-32 chars break; @@ -761,7 +761,7 @@ void AquaSalGraphics::GetGlyphWidths( const PhysicalFontFace* pFontData, bool bV } } - pMap = nullptr; + xFCMap = nullptr; } ::CloseTTFont( pSftFont ); |