summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
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;
};