diff options
Diffstat (limited to 'sd/source/ui/slideshow/slideshow.cxx')
-rw-r--r-- | sd/source/ui/slideshow/slideshow.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/slideshow/slideshow.cxx b/sd/source/ui/slideshow/slideshow.cxx index 59aa218d1c6c..1076cb88ac07 100644 --- a/sd/source/ui/slideshow/slideshow.cxx +++ b/sd/source/ui/slideshow/slideshow.cxx @@ -908,7 +908,7 @@ OutputDevice* SlideShow::getShowWindow() return mxController.is() ? mxController->mpShowWindow.get() : nullptr; } -int SlideShow::getAnimationMode() +int SlideShow::getAnimationMode() const { return mxController.is() ? mxController->meAnimationMode : ANIMATIONMODE_SHOW; } @@ -925,7 +925,7 @@ void SlideShow::jumpToPageNumber( sal_Int32 nPageNumber ) mxController->displaySlideNumber( nPageNumber ); } -sal_Int32 SlideShow::getCurrentPageNumber() +sal_Int32 SlideShow::getCurrentPageNumber() const { return mxController.is() ? mxController->getCurrentSlideNumber() : 0; } @@ -936,7 +936,7 @@ void SlideShow::jumpToBookmark( const OUString& sBookmark ) mxController->jumpToBookmark( sBookmark ); } -bool SlideShow::isFullScreen() +bool SlideShow::isFullScreen() const { return mxController.is() && mxController->maPresSettings.mbFullScreen; } |