summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-06-22 12:08:45 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-07-12 08:45:14 +0000
commit52b91f3454394a1792dec018804bf2c969f564e5 (patch)
treeb72a1bedae05e7e16268487e6d16773f8ee57674 /svx
parentc44726c48228d9c6a5960e302b1c0bd16b0099c4 (diff)
new loplugin fragiledestructor
fix up a small number of places that it finds Change-Id: Iedc91e141edfb28f727454f698cd2155a7fd5bf4 Reviewed-on: https://gerrit.libreoffice.org/26566 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svx')
-rw-r--r--svx/inc/sdr/contact/objectcontactofpageview.hxx2
-rw-r--r--svx/source/inc/GraphCtlAccessibleContext.hxx2
-rw-r--r--svx/source/sdr/contact/viewobjectcontactofpageobj.cxx2
-rw-r--r--svx/source/svdraw/svdoedge.cxx4
4 files changed, 5 insertions, 5 deletions
diff --git a/svx/inc/sdr/contact/objectcontactofpageview.hxx b/svx/inc/sdr/contact/objectcontactofpageview.hxx
index 5f8728662b2a..9de11ad95123 100644
--- a/svx/inc/sdr/contact/objectcontactofpageview.hxx
+++ b/svx/inc/sdr/contact/objectcontactofpageview.hxx
@@ -61,7 +61,7 @@ namespace sdr
virtual void PrepareProcessDisplay() override;
// From baseclass Timer, the timeout call triggered by the LazyInvalidate mechanism
- virtual void Invoke() override;
+ virtual void Invoke() final override;
// Process the whole displaying
virtual void ProcessDisplay(DisplayInfo& rDisplayInfo) override;
diff --git a/svx/source/inc/GraphCtlAccessibleContext.hxx b/svx/source/inc/GraphCtlAccessibleContext.hxx
index a87d6f3ea50a..c8c5c439245b 100644
--- a/svx/source/inc/GraphCtlAccessibleContext.hxx
+++ b/svx/source/inc/GraphCtlAccessibleContext.hxx
@@ -185,7 +185,7 @@ protected:
/// Return the object's current bounding box relative to the parent object.
Rectangle GetBoundingBox() throw (css::uno::RuntimeException);
- virtual void SAL_CALL disposing() override;
+ virtual void SAL_CALL disposing() final override;
private:
SdrObject* getSdrObject( sal_Int32 nIndex )
diff --git a/svx/source/sdr/contact/viewobjectcontactofpageobj.cxx b/svx/source/sdr/contact/viewobjectcontactofpageobj.cxx
index 15ebcfb63d4a..43c860ed53a1 100644
--- a/svx/source/sdr/contact/viewobjectcontactofpageobj.cxx
+++ b/svx/source/sdr/contact/viewobjectcontactofpageobj.cxx
@@ -54,7 +54,7 @@ public:
virtual void setLazyInvalidate(ViewObjectContact& rVOC) override;
// From baseclass Timer, the timeout call triggered by the LazyInvalidate mechanism
- virtual void Invoke() override;
+ virtual void Invoke() final override;
// get primitive visualization
drawinglayer::primitive2d::Primitive2DContainer createPrimitive2DSequenceForPage(const DisplayInfo& rDisplayInfo);
diff --git a/svx/source/svdraw/svdoedge.cxx b/svx/source/svdraw/svdoedge.cxx
index 6a88a875e5b5..a1f15f63796a 100644
--- a/svx/source/svdraw/svdoedge.cxx
+++ b/svx/source/svdraw/svdoedge.cxx
@@ -177,8 +177,8 @@ SdrEdgeObj::SdrEdgeObj()
SdrEdgeObj::~SdrEdgeObj()
{
- DisconnectFromNode(true);
- DisconnectFromNode(false);
+ SdrEdgeObj::DisconnectFromNode(true);
+ SdrEdgeObj::DisconnectFromNode(false);
delete pEdgeTrack;
}