From 567ef6d5782cdb729b49005caf6005610ce03e22 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 27 Mar 2014 18:12:18 +0100 Subject: Second batch of adding SAL_OVERRIDE to overriding function declarations ...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: Ie656f9d653fc716f72ac175925272696d509038f --- include/svx/fmmodel.hxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'include/svx/fmmodel.hxx') diff --git a/include/svx/fmmodel.hxx b/include/svx/fmmodel.hxx index b74fdcb11ba4..128579b4fc7e 100644 --- a/include/svx/fmmodel.hxx +++ b/include/svx/fmmodel.hxx @@ -56,12 +56,12 @@ public: virtual ~FmFormModel(); - virtual SdrPage* AllocPage(bool bMasterPage); - virtual void InsertPage(SdrPage* pPage, sal_uInt16 nPos=0xFFFF); - virtual SdrPage* RemovePage(sal_uInt16 nPgNum); - virtual void MovePage(sal_uInt16 nPgNum, sal_uInt16 nNewPos); - virtual void InsertMasterPage(SdrPage* pPage, sal_uInt16 nPos=0xFFFF); - virtual SdrPage* RemoveMasterPage(sal_uInt16 nPgNum); + virtual SdrPage* AllocPage(bool bMasterPage) SAL_OVERRIDE; + virtual void InsertPage(SdrPage* pPage, sal_uInt16 nPos=0xFFFF) SAL_OVERRIDE; + virtual SdrPage* RemovePage(sal_uInt16 nPgNum) SAL_OVERRIDE; + virtual void MovePage(sal_uInt16 nPgNum, sal_uInt16 nNewPos) SAL_OVERRIDE; + virtual void InsertMasterPage(SdrPage* pPage, sal_uInt16 nPos=0xFFFF) SAL_OVERRIDE; + virtual SdrPage* RemoveMasterPage(sal_uInt16 nPgNum) SAL_OVERRIDE; virtual SdrLayerID GetControlExportLayerId( const SdrObject& rObj ) const; SfxObjectShell* GetObjectShell() const { return m_pObjShell; } -- cgit