diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 16:04:04 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 17:52:29 +0200 |
commit | b36963c0a6a09f70ca6d8d607dd3249a3496497d (patch) | |
tree | 33e06dc8d227957cb31355277fb5cf20b9918628 /starmath/inc/document.hxx | |
parent | b08247a12b43fcd9f86ecd912fce7d69a3e66061 (diff) |
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
Diffstat (limited to 'starmath/inc/document.hxx')
-rw-r--r-- | starmath/inc/document.hxx | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/starmath/inc/document.hxx b/starmath/inc/document.hxx index 24c10c950a20..fb07b189a318 100644 --- a/starmath/inc/document.hxx +++ b/starmath/inc/document.hxx @@ -107,13 +107,13 @@ class SM_DLLPUBLIC SmDocShell : public SfxObjectShell, public SfxListener - virtual void Notify(SfxBroadcaster& rBC, const SfxHint& rHint) SAL_OVERRIDE; + virtual void Notify(SfxBroadcaster& rBC, const SfxHint& rHint) override; bool WriteAsMathType3( SfxMedium& ); virtual void Draw(OutputDevice *pDevice, const JobSetup & rSetup, - sal_uInt16 nAspect = ASPECT_CONTENT) SAL_OVERRIDE; + sal_uInt16 nAspect = ASPECT_CONTENT) override; virtual void FillClass(SvGlobalName* pClassName, SotClipboardFormatId* pFormat, @@ -121,16 +121,16 @@ class SM_DLLPUBLIC SmDocShell : public SfxObjectShell, public SfxListener OUString* pFullTypeName, OUString* pShortTypeName, sal_Int32 nFileFormat, - bool bTemplate = false ) const SAL_OVERRIDE; + bool bTemplate = false ) const override; - virtual sal_uLong GetMiscStatus() const SAL_OVERRIDE; - virtual void OnDocumentPrinterChanged( Printer * ) SAL_OVERRIDE; - virtual bool InitNew( const ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >& xStorage ) SAL_OVERRIDE; - virtual bool Load( SfxMedium& rMedium ) SAL_OVERRIDE; - virtual bool Save() SAL_OVERRIDE; - virtual bool SaveAs( SfxMedium& rMedium ) SAL_OVERRIDE; - virtual bool ConvertTo( SfxMedium &rMedium ) SAL_OVERRIDE; - virtual bool SaveCompleted( const ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >& xStorage ) SAL_OVERRIDE; + virtual sal_uLong GetMiscStatus() const override; + virtual void OnDocumentPrinterChanged( Printer * ) override; + virtual bool InitNew( const ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >& xStorage ) override; + virtual bool Load( SfxMedium& rMedium ) override; + virtual bool Save() override; + virtual bool SaveAs( SfxMedium& rMedium ) override; + virtual bool ConvertTo( SfxMedium &rMedium ) override; + virtual bool SaveCompleted( const ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >& xStorage ) override; Printer *GetPrt(); OutputDevice* GetRefDev(); @@ -138,7 +138,7 @@ class SM_DLLPUBLIC SmDocShell : public SfxObjectShell, public SfxListener bool IsFormulaArranged() const { return bIsFormulaArranged; } void SetFormulaArranged(bool bVal) { bIsFormulaArranged = bVal; } - virtual bool ConvertFrom(SfxMedium &rMedium) SAL_OVERRIDE; + virtual bool ConvertFrom(SfxMedium &rMedium) override; /** Called whenever the formula is changed * Deletes the current cursor @@ -203,15 +203,15 @@ public: void Repaint(); - virtual ::svl::IUndoManager *GetUndoManager () SAL_OVERRIDE; + virtual ::svl::IUndoManager *GetUndoManager () override; static SfxItemPool& GetPool(); void Execute( SfxRequest& rReq ); void GetState(SfxItemSet &); - virtual void SetVisArea (const Rectangle & rVisArea) SAL_OVERRIDE; - virtual void SetModified(bool bModified) SAL_OVERRIDE; + virtual void SetVisArea (const Rectangle & rVisArea) override; + virtual void SetModified(bool bModified) override; /** Get a cursor for modifying this document * @remarks Don't store this reference, a new cursor may be made... |