diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-01-24 09:08:34 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-11 13:25:31 +0100 |
commit | 0d1253c2328106a443d16b6c8e96347de33e2ace (patch) | |
tree | e26e7ca9f9b91f50573f446b8a93515f4c4302eb /sdext | |
parent | 2dd7aba7564a222c2acbac22975a76a6ab33c41f (diff) |
new loplugin writeonlyvars
largely based on the relevant portion of the unusedfields loplugin, but
adapted for local vars
Change-Id: Ic522a941573940e8f75c88f90ba5f37508ca49b1
Reviewed-on: https://gerrit.libreoffice.org/66835
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sdext')
-rw-r--r-- | sdext/source/presenter/PresenterSlidePreview.cxx | 15 | ||||
-rw-r--r-- | sdext/source/presenter/PresenterTextView.cxx | 9 | ||||
-rw-r--r-- | sdext/source/presenter/PresenterToolBar.cxx | 3 |
3 files changed, 0 insertions, 27 deletions
diff --git a/sdext/source/presenter/PresenterSlidePreview.cxx b/sdext/source/presenter/PresenterSlidePreview.cxx index d49d5b4b79f0..1c8d813fa9b5 100644 --- a/sdext/source/presenter/PresenterSlidePreview.cxx +++ b/sdext/source/presenter/PresenterSlidePreview.cxx @@ -203,21 +203,6 @@ void PresenterSlidePreview::SetSlide (const Reference<drawing::XDrawPage>& rxPag mxCurrentSlide = rxPage; mxPreview = nullptr; - Reference<beans::XPropertySet> xPropertySet (mxCurrentSlide, UNO_QUERY); - if (xPropertySet.is()) - { - awt::Size aSlideSize; - try - { - xPropertySet->getPropertyValue("Width") >>= aSlideSize.Width; - xPropertySet->getPropertyValue("Height") >>= aSlideSize.Height; - } - catch (beans::UnknownPropertyException&) - { - OSL_ASSERT(false); - } - } - // The preview is not transparent, therefore only this window, not its // parent, has to be invalidated. mpPresenterController->GetPaintManager()->Invalidate(mxWindow); diff --git a/sdext/source/presenter/PresenterTextView.cxx b/sdext/source/presenter/PresenterTextView.cxx index b99a482cda82..c95cab1f72f7 100644 --- a/sdext/source/presenter/PresenterTextView.cxx +++ b/sdext/source/presenter/PresenterTextView.cxx @@ -460,15 +460,6 @@ PresenterTextParagraph::PresenterTextParagraph ( if (rxTextRange.is()) { Reference<beans::XPropertySet> xProperties (rxTextRange, UNO_QUERY); - lang::Locale aLocale; - try - { - xProperties->getPropertyValue("CharLocale") >>= aLocale; - } - catch(beans::UnknownPropertyException&) - { - // Ignore the exception. Use the default value. - } try { xProperties->getPropertyValue("WritingMode") >>= mnWritingMode; diff --git a/sdext/source/presenter/PresenterToolBar.cxx b/sdext/source/presenter/PresenterToolBar.cxx index c20ece60019d..945573bacffd 100644 --- a/sdext/source/presenter/PresenterToolBar.cxx +++ b/sdext/source/presenter/PresenterToolBar.cxx @@ -632,9 +632,6 @@ void PresenterToolBar::ProcessEntry ( if ( ! (PresenterConfigurationAccess::GetProperty(rxProperties, "Type") >>= sType)) return; - OUString sName; - PresenterConfigurationAccess::GetProperty(rxProperties, "Name") >>= sName; - // Read mode specific values. SharedElementMode pNormalMode (new ElementMode()); SharedElementMode pMouseOverMode (new ElementMode()); |