diff options
Diffstat (limited to 'oox/source/helper/progressbar.cxx')
-rw-r--r-- | oox/source/helper/progressbar.cxx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/oox/source/helper/progressbar.cxx b/oox/source/helper/progressbar.cxx index ab616772d7c9..307a78bf553b 100644 --- a/oox/source/helper/progressbar.cxx +++ b/oox/source/helper/progressbar.cxx @@ -24,8 +24,6 @@ namespace oox { - - using namespace ::com::sun::star::task; using namespace ::com::sun::star::uno; @@ -35,21 +33,14 @@ const sal_Int32 PROGRESS_RANGE = 1000000; } // namespace - - IProgressBar::~IProgressBar() { } - - ISegmentProgressBar::~ISegmentProgressBar() { } - - - ProgressBar::ProgressBar( const Reference< XStatusIndicator >& rxIndicator, const OUString& rText ) : mxIndicator( rxIndicator ), mfPosition( 0 ) @@ -77,8 +68,6 @@ void ProgressBar::setPosition( double fPosition ) mxIndicator->setValue( static_cast< sal_Int32 >( mfPosition * PROGRESS_RANGE ) ); } - - namespace prv { class SubSegment : public ISegmentProgressBar @@ -100,8 +89,6 @@ private: double mfFreeStart; }; - - SubSegment::SubSegment( IProgressBar& rParentProgress, double fStartPos, double fLength ) : mrParentProgress( rParentProgress ), mfStartPos( fStartPos ), @@ -139,8 +126,6 @@ ISegmentProgressBarRef SubSegment::createSegment( double fLength ) } // namespace prv - - SegmentProgressBar::SegmentProgressBar( const Reference< XStatusIndicator >& rxIndicator, const OUString& rText ) : maProgress( rxIndicator, rText ), mfFreeStart( 0.0 ) @@ -171,8 +156,6 @@ ISegmentProgressBarRef SegmentProgressBar::createSegment( double fLength ) return xSegment; } - - } // namespace oox /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |