summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2012-08-03 15:53:03 +0200
committerMiklos Vajna <vmiklos@suse.cz>2012-08-03 15:55:54 +0200
commitd07e8fe18e470a08926cb43d2280f154277de137 (patch)
treeaa5d146a907cf568b4f8ae228d0e25ce0c54979a
parent52dff376587c2e072048d9b99748cd46336a48ba (diff)
SmDocShell::writeFormulaOoxml: don't use m_ prefix for non-member variable
Change-Id: I5a9d64db9b135396d8eab8a020bd4beec8a0f3dc
-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 e9b4a9595990..62e26f5e841a 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 6cc719e3f60e..a3bac0559435 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)