summaryrefslogtreecommitdiff
path: root/sw/inc/calbck.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/inc/calbck.hxx')
-rw-r--r--sw/inc/calbck.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/calbck.hxx b/sw/inc/calbck.hxx
index 26320f9e657f..0b7f0dd50558 100644
--- a/sw/inc/calbck.hxx
+++ b/sw/inc/calbck.hxx
@@ -127,7 +127,7 @@ class SW_DLLPUBLIC SwModify: public SwClient
sal_Bool bInSwFntCache : 1;
// mba: IMHO this method should be pure virtual
- virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew);
+ virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew) SAL_OVERRIDE;
public:
SwModify();
@@ -152,7 +152,7 @@ public:
const SwClient* GetDepends() const { return pRoot; }
// get information about attribute
- virtual bool GetInfo( SfxPoolItem& ) const;
+ virtual bool GetInfo( SfxPoolItem& ) const SAL_OVERRIDE;
void LockModify() { bModifyLocked = true; }
void UnlockModify() { bModifyLocked = false; }
@@ -184,10 +184,10 @@ public:
SwClient* GetToTell() { return pToTell; }
/** get Client information */
- virtual bool GetInfo( SfxPoolItem & ) const;
+ virtual bool GetInfo( SfxPoolItem & ) const SAL_OVERRIDE;
protected:
- virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNewValue );
- virtual void SwClientNotify( const SwModify& rModify, const SfxHint& rHint );
+ virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNewValue ) SAL_OVERRIDE;
+ virtual void SwClientNotify( const SwModify& rModify, const SfxHint& rHint ) SAL_OVERRIDE;
};
class SwClientIter