diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-28 14:21:57 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-29 08:25:32 +0200 |
commit | 1902f1e4c787293559378f3d8cb9c10c369f8ae4 (patch) | |
tree | 4af1591b4b1e86d1e23bba2bc3bd82b3ddcb82a7 /sd/source/ui/inc/slideshow.hxx | |
parent | d744838991594eebe27acc4c7d9fb4579d654853 (diff) |
loplugin:constmethod in sd
Change-Id: I063194abe47d8c1d3d9202bbe4b01d79c36ceda3
Reviewed-on: https://gerrit.libreoffice.org/79790
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source/ui/inc/slideshow.hxx')
-rw-r--r-- | sd/source/ui/inc/slideshow.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/inc/slideshow.hxx b/sd/source/ui/inc/slideshow.hxx index 8cb23749ec2e..588e6e20b23f 100644 --- a/sd/source/ui/inc/slideshow.hxx +++ b/sd/source/ui/inc/slideshow.hxx @@ -152,10 +152,10 @@ public: bool longpress(const CommandLongPressData& rLongPressData); // settings - bool isFullScreen(); // a.k.a. FuSlideShow::IsFullScreen() + bool isFullScreen() const; // a.k.a. FuSlideShow::IsFullScreen() OutputDevice* getShowWindow(); // a.k.a. FuSlideShow::GetShowWindow() - int getAnimationMode(); // a.k.a. FuSlideShow::GetAnimationMode() - sal_Int32 getCurrentPageNumber(); // a.k.a. FuSlideShow::GetCurrentPage() + int getAnimationMode() const; // a.k.a. FuSlideShow::GetAnimationMode() + sal_Int32 getCurrentPageNumber() const; // a.k.a. FuSlideShow::GetCurrentPage() // events void resize( const Size &rSize ); |