starmath: Remove unnecessary overriding

Change-Id: If64c3a1dbb27e85e2562cca78b608250b7e90c6d
Reviewed-on: https://gerrit.libreoffice.org/30480
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
This commit is contained in:
Takeshi Abe
2016-11-02 18:46:51 +09:00
parent fdc77804d6
commit 063593972e
2 changed files with 0 additions and 10 deletions

View File

@@ -124,7 +124,6 @@ class SM_DLLPUBLIC SmDocShell : public SfxObjectShell, public SfxListener
virtual bool Load( SfxMedium& rMedium ) override;
virtual bool Save() override;
virtual bool SaveAs( SfxMedium& rMedium ) override;
virtual bool SaveCompleted( const css::uno::Reference< css::embed::XStorage >& xStorage ) override;
Printer *GetPrt();
OutputDevice* GetRefDev();

View File

@@ -912,15 +912,6 @@ void SmDocShell::readFormulaOoxml( oox::formulaimport::XmlStream& stream )
SetText( aEquation.ConvertToStarMath());
}
bool SmDocShell::SaveCompleted( const css::uno::Reference< css::embed::XStorage >& xStorage )
{
if( SfxObjectShell::SaveCompleted( xStorage ))
return true;
return false;
}
void SmDocShell::Execute(SfxRequest& rReq)
{
switch (rReq.GetSlot())