diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-28 10:01:04 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-28 13:47:28 +0200 |
commit | e75a545f2869a4406bb434c356d481745f000271 (patch) | |
tree | 5f7b64b1c21096a98c18c47e4df855a58572be8a /slideshow/source/inc | |
parent | c1e31ee0433232104c73cfa56e24e056833213dc (diff) |
loplugin:constmethod in sdext..starmath
Change-Id: Ib1b60382c9ec62f35f0f232c3f2c2d5664ea669e
Reviewed-on: https://gerrit.libreoffice.org/79779
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'slideshow/source/inc')
-rw-r--r-- | slideshow/source/inc/shapeimporter.hxx | 4 | ||||
-rw-r--r-- | slideshow/source/inc/slidebitmap.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/slideshow/source/inc/shapeimporter.hxx b/slideshow/source/inc/shapeimporter.hxx index 584b40941f37..b29c0b079d0c 100644 --- a/slideshow/source/inc/shapeimporter.hxx +++ b/slideshow/source/inc/shapeimporter.hxx @@ -90,9 +90,9 @@ public: importShape() call. */ bool isImportDone() const; - const PolyPolygonVector& getPolygons(); + const PolyPolygonVector& getPolygons() const; - double getImportedShapesCount() { return mnAscendingPrio; } + double getImportedShapesCount() const{ return mnAscendingPrio; } private: bool isSkip( css::uno::Reference<css::beans::XPropertySet> const& xPropSet, OUString const& shapeType, diff --git a/slideshow/source/inc/slidebitmap.hxx b/slideshow/source/inc/slidebitmap.hxx index d311a6d1470c..f149138c4a7c 100644 --- a/slideshow/source/inc/slidebitmap.hxx +++ b/slideshow/source/inc/slidebitmap.hxx @@ -68,7 +68,7 @@ namespace slideshow void move( const ::basegfx::B2DPoint& rNewPos ); void clip( const ::basegfx::B2DPolyPolygon& rClipPoly ); - const css::uno::Reference< css::rendering::XBitmap >& getXBitmap(); + const css::uno::Reference< css::rendering::XBitmap >& getXBitmap() const; private: ::basegfx::B2DPoint maOutputPos; |