summaryrefslogtreecommitdiff
path: root/starmath
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 /starmath
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 'starmath')
-rw-r--r--starmath/source/dialog.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/starmath/source/dialog.cxx b/starmath/source/dialog.cxx
index 1b6b34929303..852bc1b564ef 100644
--- a/starmath/source/dialog.cxx
+++ b/starmath/source/dialog.cxx
@@ -2337,9 +2337,9 @@ void SmSymDefineDialog::SetFont(const OUString &rFontName, const OUString &rStyl
pSymbolDisplay->SetFont(aFontMetric);
// update subset listbox for new font's unicode subsets
- FontCharMapPtr pFontCharMap;
- pCharsetDisplay->GetFontCharMap( pFontCharMap );
- pSubsetMap.reset(new SubsetMap( pFontCharMap ));
+ FontCharMapPtr xFontCharMap;
+ pCharsetDisplay->GetFontCharMap( xFontCharMap );
+ pSubsetMap.reset(new SubsetMap( xFontCharMap ));
pFontsSubsetLB->Clear();
bool bFirst = true;
@@ -2357,7 +2357,7 @@ void SmSymDefineDialog::SetFont(const OUString &rFontName, const OUString &rStyl
pFontsSubsetLB->SetNoSelection();
pFontsSubsetLB->Enable( !bFirst );
- pFontCharMap = nullptr;
+ xFontCharMap = nullptr;
}