diff options
Diffstat (limited to 'include/oox/helper/progressbar.hxx')
-rw-r--r-- | include/oox/helper/progressbar.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/oox/helper/progressbar.hxx b/include/oox/helper/progressbar.hxx index cbc4244a7ca7..88ddb99ff919 100644 --- a/include/oox/helper/progressbar.hxx +++ b/include/oox/helper/progressbar.hxx @@ -67,7 +67,7 @@ typedef std::shared_ptr< ISegmentProgressBar > ISegmentProgressBarRef; class OOX_DLLPUBLIC ISegmentProgressBar : public IProgressBar { public: - virtual ~ISegmentProgressBar(); + virtual ~ISegmentProgressBar() override; /** Returns the length that is still free for creating sub segments. */ virtual double getFreeLength() const = 0; @@ -86,7 +86,7 @@ public: const css::uno::Reference< css::task::XStatusIndicator >& rxIndicator, const OUString& rText ); - virtual ~ProgressBar(); + virtual ~ProgressBar() override; /** Returns the current position of the progress bar. */ virtual double getPosition() const override; |