summaryrefslogtreecommitdiffstats
path: root/include/svx/scene3d.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-06-17 09:49:37 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-06-19 14:08:50 +0200
commite3077168072452fb8f1c0a8afb2992877cb96d1c (patch)
tree785da5126ddb052250ee3747fa221c746cc62e82 /include/svx/scene3d.hxx
parentScriptForge - (SF_PythonHelper.xba) fix signature of PyInputBox() (diff)
downloadcore-e3077168072452fb8f1c0a8afb2992877cb96d1c.tar.gz
core-e3077168072452fb8f1c0a8afb2992877cb96d1c.zip
loplugin:finalclasses
improve the plugin to detect more cases. I only apply the new final changes to classes in /include here. Which reveals that RoadmapWizard::getPageController( TabPage* _pCurrentPage ) will always return nullptr Also needed to sprinkle some SAL_DLLPUBLIC_TEMPLATE around to workaround Visual Studio linking problems. Change-Id: Iadb7d46a9e0e73dabce562375ca013c0fea6690c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117365 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx/scene3d.hxx')
-rw-r--r--include/svx/scene3d.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/svx/scene3d.hxx b/include/svx/scene3d.hxx
index 4c8b1b14a7e2..d2d91f3c3e9c 100644
--- a/include/svx/scene3d.hxx
+++ b/include/svx/scene3d.hxx
@@ -54,9 +54,8 @@ class Imp3DDepthRemapper;
|*
\************************************************************************/
-class SVXCORE_DLLPUBLIC E3dScene : public E3dObject, public SdrObjList
+class SVXCORE_DLLPUBLIC E3dScene final : public E3dObject, public SdrObjList
{
-protected:
virtual std::unique_ptr<sdr::properties::BaseProperties> CreateObjectSpecificProperties() override;
virtual std::unique_ptr<sdr::contact::ViewContact> CreateObjectSpecificViewContact() override;
@@ -184,7 +183,7 @@ public:
virtual SdrObjList* GetSubList() const override;
virtual void SetTransformChanged() override;
-protected:
+private:
virtual basegfx::B3DRange RecalcBoundVolume() const override;
};