From 581efdec36787dc5e378e54d13e7328fddcf3a50 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 1 Oct 2021 13:01:58 +0200 Subject: loplugin:constmethod Change-Id: I3ed657c5c5e6840e38e3c8505505b4b372125df0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122910 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/svx/gallerybinaryengineentry.hxx | 2 +- include/svx/obj3d.hxx | 2 +- include/svx/svditer.hxx | 2 +- include/svx/svdpntv.hxx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'include/svx') diff --git a/include/svx/gallerybinaryengineentry.hxx b/include/svx/gallerybinaryengineentry.hxx index 48a27113ace1..f624e9177bd5 100644 --- a/include/svx/gallerybinaryengineentry.hxx +++ b/include/svx/gallerybinaryengineentry.hxx @@ -38,7 +38,7 @@ public: GalleryBinaryEngineEntry(); static void CreateUniqueURL(const INetURLObject& rBaseURL, INetURLObject& aURL); - OUString ReadStrFromIni(std::u16string_view aKeyName); + OUString ReadStrFromIni(std::u16string_view aKeyName) const; const INetURLObject& GetThmURL() const { return mpGalleryStorageLocations->GetThmURL(); } const INetURLObject& GetSdgURL() const { return mpGalleryStorageLocations->GetSdgURL(); } diff --git a/include/svx/obj3d.hxx b/include/svx/obj3d.hxx index 0cbaa62ef3ee..29feec983475 100644 --- a/include/svx/obj3d.hxx +++ b/include/svx/obj3d.hxx @@ -164,7 +164,7 @@ protected: protected: // convert given basegfx::B3DPolyPolygon to screen coor - basegfx::B2DPolyPolygon TransformToScreenCoor(const basegfx::B3DPolyPolygon& rCandidate); + basegfx::B2DPolyPolygon TransformToScreenCoor(const basegfx::B3DPolyPolygon& rCandidate) const; // protected destructor virtual ~E3dCompoundObject() override; diff --git a/include/svx/svditer.hxx b/include/svx/svditer.hxx index 8f1b022db894..9b43b5637855 100644 --- a/include/svx/svditer.hxx +++ b/include/svx/svditer.hxx @@ -66,7 +66,7 @@ public: return (idx < maObjList.size()) ? const_cast< SdrObject* >(maObjList[idx]) : nullptr; } - size_t Count() { return maObjList.size(); } + size_t Count() const { return maObjList.size(); } }; #endif // INCLUDED_SVX_SVDITER_HXX diff --git a/include/svx/svdpntv.hxx b/include/svx/svdpntv.hxx index 66c1e33e378b..b8212b1fcae4 100644 --- a/include/svx/svdpntv.hxx +++ b/include/svx/svdpntv.hxx @@ -236,7 +236,7 @@ protected: void ImpSetGlueVisible4(bool bOn) { if (mbGlueVisible4!=bOn) { mbGlueVisible4=bOn; if (!mbGlueVisible && !mbGlueVisible2 && !mbGlueVisible3) GlueInvalidate(); } } public: - bool ImpIsGlueVisible() { return mbGlueVisible || mbGlueVisible2 || mbGlueVisible3 || mbGlueVisible4; } + bool ImpIsGlueVisible() const { return mbGlueVisible || mbGlueVisible2 || mbGlueVisible3 || mbGlueVisible4; } protected: virtual void Notify(SfxBroadcaster& rBC, const SfxHint& rHint) override; -- cgit