summaryrefslogtreecommitdiff
path: root/include/svx/unoshtxt.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
commit567ef6d5782cdb729b49005caf6005610ce03e22 (patch)
tree7e3be1da41382e555d9091914ef7e064852a4fd4 /include/svx/unoshtxt.hxx
parentc36daa01f444ebad799c1cc7a106f1b4bb3c3d12 (diff)
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
Diffstat (limited to 'include/svx/unoshtxt.hxx')
-rw-r--r--include/svx/unoshtxt.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/include/svx/unoshtxt.hxx b/include/svx/unoshtxt.hxx
index 09dee0d33627..315737c9aaeb 100644
--- a/include/svx/unoshtxt.hxx
+++ b/include/svx/unoshtxt.hxx
@@ -55,26 +55,26 @@ public:
virtual ~SvxTextEditSource();
- virtual SvxEditSource* Clone() const;
- virtual SvxTextForwarder* GetTextForwarder();
- virtual SvxViewForwarder* GetViewForwarder();
+ virtual SvxEditSource* Clone() const SAL_OVERRIDE;
+ virtual SvxTextForwarder* GetTextForwarder() SAL_OVERRIDE;
+ virtual SvxViewForwarder* GetViewForwarder() SAL_OVERRIDE;
virtual SvxEditViewForwarder* GetEditViewForwarder( bool bCreate = false ) SAL_OVERRIDE;
- virtual void UpdateData();
+ virtual void UpdateData() SAL_OVERRIDE;
- virtual void addRange( SvxUnoTextRangeBase* pNewRange );
- virtual void removeRange( SvxUnoTextRangeBase* pOldRange );
- virtual const SvxUnoTextRangeBaseList& getRanges() const;
+ virtual void addRange( SvxUnoTextRangeBase* pNewRange ) SAL_OVERRIDE;
+ virtual void removeRange( SvxUnoTextRangeBase* pOldRange ) SAL_OVERRIDE;
+ virtual const SvxUnoTextRangeBaseList& getRanges() const SAL_OVERRIDE;
- virtual SfxBroadcaster& GetBroadcaster() const;
+ virtual SfxBroadcaster& GetBroadcaster() const SAL_OVERRIDE;
void lock();
void unlock();
// the SvxViewForwarder interface
- virtual bool IsValid() const;
- virtual Rectangle GetVisArea() const;
- virtual Point LogicToPixel( const Point&, const MapMode& ) const;
- virtual Point PixelToLogic( const Point&, const MapMode& ) const;
+ virtual bool IsValid() const SAL_OVERRIDE;
+ virtual Rectangle GetVisArea() const SAL_OVERRIDE;
+ virtual Point LogicToPixel( const Point&, const MapMode& ) const SAL_OVERRIDE;
+ virtual Point PixelToLogic( const Point&, const MapMode& ) const SAL_OVERRIDE;
void ChangeModel( SdrModel* pNewModel );