summaryrefslogtreecommitdiff
path: root/include/sfx2/progress.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-17 15:18:55 +0200
committerNoel Grandin <noel@peralex.com>2014-03-18 11:27:39 +0200
commite399c0759812affd4f7f6e1e3aacfbcafc06ad6d (patch)
treed42e98ba90fc104f9e12f63219d2d8df51b1cf09 /include/sfx2/progress.hxx
parent86725da2a2a0a7ae34f600b53976b72b7d456c9f (diff)
SfxProgress::SetState does not need to be virtual
Change-Id: I39a138c05ed995b8f9706a66338b994193fdee50
Diffstat (limited to 'include/sfx2/progress.hxx')
-rw-r--r--include/sfx2/progress.hxx2
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();