summaryrefslogtreecommitdiff
authorMiklos Vajna <vmiklos@suse.cz>2012-08-03 13:53:03 (GMT)
committer Miklos Vajna <vmiklos@suse.cz>2012-08-03 13:55:54 (GMT)
commitd07e8fe18e470a08926cb43d2280f154277de137 (patch) (side-by-side diff)
treeaa5d146a907cf568b4f8ae228d0e25ce0c54979a
parent52dff376587c2e072048d9b99748cd46336a48ba (diff)
downloadcore-d07e8fe18e470a08926cb43d2280f154277de137.zip
core-d07e8fe18e470a08926cb43d2280f154277de137.tar.gz
SmDocShell::writeFormulaOoxml: don't use m_ prefix for non-member variable
Change-Id: I5a9d64db9b135396d8eab8a020bd4beec8a0f3dc
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--starmath/inc/document.hxx2
-rw-r--r--starmath/source/document.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/starmath/inc/document.hxx b/starmath/inc/document.hxx
index e9b4a95..62e26f5 100644
--- a/starmath/inc/document.hxx
+++ b/starmath/inc/document.hxx
@@ -155,7 +155,7 @@ class SmDocShell : public SfxObjectShell, public SfxListener
*/
void InvalidateCursor();
- bool writeFormulaOoxml( ::sax_fastparser::FSHelperPtr m_pSerializer, oox::core::OoxmlVersion version );
+ bool writeFormulaOoxml( ::sax_fastparser::FSHelperPtr pSerializer, oox::core::OoxmlVersion version );
void writeFormulaRtf(OStringBuffer& rBuffer, rtl_TextEncoding nEncoding);
bool readFormulaOoxml( oox::formulaimport::XmlStream& stream );
diff --git a/starmath/source/document.cxx b/starmath/source/document.cxx
index 6cc719e..a3bac05 100644
--- a/starmath/source/document.cxx
+++ b/starmath/source/document.cxx
@@ -975,7 +975,7 @@ sal_Bool SmDocShell::ConvertTo( SfxMedium &rMedium )
return bRet;
}
-bool SmDocShell::writeFormulaOoxml( ::sax_fastparser::FSHelperPtr m_pSerializer, oox::core::OoxmlVersion version )
+bool SmDocShell::writeFormulaOoxml( ::sax_fastparser::FSHelperPtr pSerializer, oox::core::OoxmlVersion version )
{
RTL_LOGFILE_CONTEXT( aLog, "starmath: SmDocShell::writeFormulaOoxml" );
@@ -984,7 +984,7 @@ bool SmDocShell::writeFormulaOoxml( ::sax_fastparser::FSHelperPtr m_pSerializer,
if( pTree && !IsFormulaArranged() )
ArrangeFormula();
SmOoxmlExport aEquation( pTree, version );
- return aEquation.ConvertFromStarMath( m_pSerializer );
+ return aEquation.ConvertFromStarMath( pSerializer );
}
void SmDocShell::writeFormulaRtf(OStringBuffer& rBuffer, rtl_TextEncoding nEncoding)