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/oox/helper/progressbar.hxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'include/oox/helper/progressbar.hxx') 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; -- cgit