diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2016-11-02 18:46:51 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2016-11-03 04:08:38 +0000 |
commit | 063593972e556f8f0e65881ccd77d5ea64175e8b (patch) | |
tree | 176fdbd5e2b118f791e5f6f4a84eeff4c9960eb2 /starmath | |
parent | fdc77804d681ea36b8dd257d7a8669a99e1dbb98 (diff) |
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>
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/inc/document.hxx | 1 | ||||
-rw-r--r-- | starmath/source/document.cxx | 9 |
2 files changed, 0 insertions, 10 deletions
diff --git a/starmath/inc/document.hxx b/starmath/inc/document.hxx index 622c5062321d..cb189afea9b9 100644 --- a/starmath/inc/document.hxx +++ b/starmath/inc/document.hxx @@ -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(); diff --git a/starmath/source/document.cxx b/starmath/source/document.cxx index 64847fd591e0..142bc78f9f28 100644 --- a/starmath/source/document.cxx +++ b/starmath/source/document.cxx @@ -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()) |