summaryrefslogtreecommitdiff
path: root/include/oox/helper/progressbar.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/oox/helper/progressbar.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/oox/helper/progressbar.hxx')
-rw-r--r--include/oox/helper/progressbar.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/oox/helper/progressbar.hxx b/include/oox/helper/progressbar.hxx
index ce08a6beccfd..e671d42deb6d 100644
--- a/include/oox/helper/progressbar.hxx
+++ b/include/oox/helper/progressbar.hxx
@@ -93,9 +93,9 @@ public:
virtual ~ProgressBar();
/** Returns the current position of the progress bar. */
- virtual double getPosition() const;
+ virtual double getPosition() const SAL_OVERRIDE;
/** Sets the current position of the progress bar. */
- virtual void setPosition( double fPosition );
+ virtual void setPosition( double fPosition ) SAL_OVERRIDE;
private:
::com::sun::star::uno::Reference< ::com::sun::star::task::XStatusIndicator >
@@ -115,14 +115,14 @@ public:
const OUString& rText );
/** Returns the current position of the progress bar segment. */
- virtual double getPosition() const;
+ virtual double getPosition() const SAL_OVERRIDE;
/** Sets the current position of the progress bar segment. */
- virtual void setPosition( double fPosition );
+ virtual void setPosition( double fPosition ) SAL_OVERRIDE;
/** Returns the length that is still free for creating sub segments. */
- virtual double getFreeLength() const;
+ virtual double getFreeLength() const SAL_OVERRIDE;
/** Adds a new segment with the specified length. */
- virtual ISegmentProgressBarRef createSegment( double fLength );
+ virtual ISegmentProgressBarRef createSegment( double fLength ) SAL_OVERRIDE;
private:
ProgressBar maProgress;