summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-01-02 13:43:42 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-01-02 19:36:59 +0100
commit4e2c4bd9228bd0cf973f13dbe4410a2391d06ab8 (patch)
tree4ddc4cc8df5209dc5aa17f004a2db5b75857d6f7 /sd
parente327bccf14130eb469f06c96721b9d8aea5dd506 (diff)
loplugin:unusedfields
Change-Id: I20a387563a0f65bc9a7149ab0b08b09f1946e9ce Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127867 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/slideshow/slideshowviewimpl.cxx3
-rw-r--r--sd/source/ui/slideshow/slideshowviewimpl.hxx1
2 files changed, 1 insertions, 3 deletions
diff --git a/sd/source/ui/slideshow/slideshowviewimpl.cxx b/sd/source/ui/slideshow/slideshowviewimpl.cxx
index de12be146e1d..9666e232dccb 100644
--- a/sd/source/ui/slideshow/slideshowviewimpl.cxx
+++ b/sd/source/ui/slideshow/slideshowviewimpl.cxx
@@ -157,7 +157,6 @@ SlideShowView::SlideShowView( ShowWindow& rOutputWindow,
mbIsMouseMotionListener( false ),
meAnimationMode( eAnimationMode ),
mbFirstPaint( true ),
- mbFullScreen( bFullScreen ),
mbMousePressedEaten( false )
{
mxWindow->addWindowListener( this );
@@ -170,7 +169,7 @@ SlideShowView::SlideShowView( ShowWindow& rOutputWindow,
// #i48939# only switch on kind of hacky scroll optimization, when
// running fullscreen. this minimizes the probability that other
// windows partially cover the show.
- if( mbFullScreen )
+ if( bFullScreen )
{
try
{
diff --git a/sd/source/ui/slideshow/slideshowviewimpl.hxx b/sd/source/ui/slideshow/slideshowviewimpl.hxx
index 4cbb84aadf05..e1bee91ea368 100644
--- a/sd/source/ui/slideshow/slideshowviewimpl.hxx
+++ b/sd/source/ui/slideshow/slideshowviewimpl.hxx
@@ -189,7 +189,6 @@ private:
bool mbIsMouseMotionListener;
AnimationMode meAnimationMode;
bool mbFirstPaint;
- bool mbFullScreen;
bool mbMousePressedEaten;
css::geometry::IntegerSize2D mTranslationOffset;
};