diff options
author | Noel Grandin <noel@peralex.com> | 2016-06-29 09:09:05 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-06-30 07:01:41 +0000 |
commit | fbd23182ee1804fd87a13d79a71e231549767408 (patch) | |
tree | ba2e1c8af7bcfc71908ae6a1858315e6547b3c73 /sdext/source | |
parent | f160d8c879b7184b2a41f2310a09c0432c14379a (diff) |
loplugin:unusedfields
Change-Id: If06fffa8db050df0f9c1c7da6163575bf522382e
Reviewed-on: https://gerrit.libreoffice.org/26754
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sdext/source')
-rw-r--r-- | sdext/source/presenter/PresenterToolBar.cxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sdext/source/presenter/PresenterToolBar.cxx b/sdext/source/presenter/PresenterToolBar.cxx index a791386f0fda..2f298b28450a 100644 --- a/sdext/source/presenter/PresenterToolBar.cxx +++ b/sdext/source/presenter/PresenterToolBar.cxx @@ -263,7 +263,6 @@ namespace { class TimeFormatter { public: - TimeFormatter(); static OUString FormatTime (const oslDateTime& rTime); }; @@ -319,7 +318,6 @@ namespace { const SharedElementMode& rpDisabledMode) override; virtual void restart() override; private: - TimeFormatter maTimeFormatter; TimeValue maStartTimeValue; PresentationTimeLabel (const ::rtl::Reference<PresenterToolBar>& rpToolBar); virtual ~PresentationTimeLabel(); @@ -1792,10 +1790,6 @@ geometry::RealRectangle2D Text::GetBoundingBox (const Reference<rendering::XCanv //===== TimeFormatter ========================================================= -TimeFormatter::TimeFormatter() -{ -} - OUString TimeFormatter::FormatTime (const oslDateTime& rTime) { OUStringBuffer sText; @@ -1897,7 +1891,6 @@ PresentationTimeLabel::~PresentationTimeLabel() PresentationTimeLabel::PresentationTimeLabel ( const ::rtl::Reference<PresenterToolBar>& rpToolBar) : TimeLabel(rpToolBar), - maTimeFormatter(), maStartTimeValue() { restart(); |