diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-17 15:18:55 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-18 11:27:39 +0200 |
commit | e399c0759812affd4f7f6e1e3aacfbcafc06ad6d (patch) | |
tree | d42e98ba90fc104f9e12f63219d2d8df51b1cf09 /include/sfx2 | |
parent | 86725da2a2a0a7ae34f600b53976b72b7d456c9f (diff) |
SfxProgress::SetState does not need to be virtual
Change-Id: I39a138c05ed995b8f9706a66338b994193fdee50
Diffstat (limited to 'include/sfx2')
-rw-r--r-- | include/sfx2/progress.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sfx2/progress.hxx b/include/sfx2/progress.hxx index c5f534fef40e..46d28af5ea5f 100644 --- a/include/sfx2/progress.hxx +++ b/include/sfx2/progress.hxx @@ -48,7 +48,7 @@ public: virtual void SetText( const OUString& rText ); bool SetStateText( sal_uIntPtr nVal, const rtl::OUString &rVal, sal_uIntPtr nNewRange = 0 ); - virtual bool SetState( sal_uIntPtr nVal, sal_uIntPtr nNewRange = 0 ); + bool SetState( sal_uIntPtr nVal, sal_uIntPtr nNewRange = 0 ); sal_uIntPtr GetState() const { return nVal; } void Resume(); |