summaryrefslogtreecommitdiff
path: root/vcl/qa
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2016-01-10 21:37:22 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2016-01-10 12:15:42 +0000
commit536d0e27f05d9db7469bd8a3571c87b2ea885367 (patch)
tree304d45792300b026f22a26db6c748def48d979ec /vcl/qa
parent36ccb37eee589c444445ab2d05a5c0dff6585a2f (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/qa')
-rw-r--r--vcl/qa/cppunit/fontcharmap.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/vcl/qa/cppunit/fontcharmap.cxx b/vcl/qa/cppunit/fontcharmap.cxx
index 4453ffa4cb95..8b8f2e7a056e 100644
--- a/vcl/qa/cppunit/fontcharmap.cxx
+++ b/vcl/qa/cppunit/fontcharmap.cxx
@@ -28,19 +28,19 @@ public:
void VclFontCharMapTest::testDefaultFontCharMap()
{
- FontCharMapPtr pfcmap( new FontCharMap() ); // gets default map
+ FontCharMapPtr xfcmap( new FontCharMap() ); // gets default map
- CPPUNIT_ASSERT( pfcmap->IsDefaultMap() );
+ CPPUNIT_ASSERT( xfcmap->IsDefaultMap() );
- sal_uInt32 nStartBMPPlane = pfcmap->GetFirstChar();
- sal_uInt32 nStartSupBMPPlane = pfcmap->GetNextChar(0xD800);
- sal_uInt32 nEndBMPPlane = pfcmap->GetLastChar();
+ sal_uInt32 nStartBMPPlane = xfcmap->GetFirstChar();
+ sal_uInt32 nStartSupBMPPlane = xfcmap->GetNextChar(0xD800);
+ sal_uInt32 nEndBMPPlane = xfcmap->GetLastChar();
CPPUNIT_ASSERT( nStartBMPPlane == 0x0020 );
CPPUNIT_ASSERT( nStartSupBMPPlane == 0xE000 );
CPPUNIT_ASSERT( nEndBMPPlane == 0xFFF0-1 );
- pfcmap = nullptr;
+ xfcmap = nullptr;
}
CPPUNIT_TEST_SUITE_REGISTRATION(VclFontCharMapTest);