starmath/inc/document.hxx | 2 +- starmath/source/document.cxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
New commits: commit d07e8fe18e470a08926cb43d2280f154277de137 Author: Miklos Vajna <[email protected]> Date: Fri Aug 3 15:53:03 2012 +0200 SmDocShell::writeFormulaOoxml: don't use m_ prefix for non-member variable Change-Id: I5a9d64db9b135396d8eab8a020bd4beec8a0f3dc 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) _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
