summaryrefslogtreecommitdiff
path: root/include/drawinglayer/processor2d
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-26 16:37:00 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-26 16:39:26 +0100
commit70cc2b191b95fbc210bc1f0f6a7159f341894f0f (patch)
treea70f4957c454b443520cbf91250c41d9eea80017 /include/drawinglayer/processor2d
parent8757bea2e88c6e349e1fe98d8e9695d7b9c6179e (diff)
First batch of adding SAL_OVERRRIDE to overriding function declarations
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: I71fa20213e86be10de332ece0aa273239df7b61a
Diffstat (limited to 'include/drawinglayer/processor2d')
-rw-r--r--include/drawinglayer/processor2d/contourextractor2d.hxx2
-rw-r--r--include/drawinglayer/processor2d/hittestprocessor2d.hxx2
-rw-r--r--include/drawinglayer/processor2d/linegeometryextractor2d.hxx2
-rw-r--r--include/drawinglayer/processor2d/objectinfoextractor2d.hxx2
-rw-r--r--include/drawinglayer/processor2d/textaspolygonextractor2d.hxx2
5 files changed, 5 insertions, 5 deletions
diff --git a/include/drawinglayer/processor2d/contourextractor2d.hxx b/include/drawinglayer/processor2d/contourextractor2d.hxx
index e3fdd5f3ca01..7fcf6d332fa9 100644
--- a/include/drawinglayer/processor2d/contourextractor2d.hxx
+++ b/include/drawinglayer/processor2d/contourextractor2d.hxx
@@ -47,7 +47,7 @@ namespace drawinglayer
bool mbExtractFillOnly : 1;
/// tooling methods
- void processBasePrimitive2D(const primitive2d::BasePrimitive2D& rCandidate);
+ void processBasePrimitive2D(const primitive2d::BasePrimitive2D& rCandidate) SAL_OVERRIDE;
public:
explicit ContourExtractor2D(
diff --git a/include/drawinglayer/processor2d/hittestprocessor2d.hxx b/include/drawinglayer/processor2d/hittestprocessor2d.hxx
index 11678e854822..e1cd88702284 100644
--- a/include/drawinglayer/processor2d/hittestprocessor2d.hxx
+++ b/include/drawinglayer/processor2d/hittestprocessor2d.hxx
@@ -67,7 +67,7 @@ namespace drawinglayer
bool mbHitTextOnly : 1;
/// tooling methods
- void processBasePrimitive2D(const primitive2d::BasePrimitive2D& rCandidate);
+ void processBasePrimitive2D(const primitive2d::BasePrimitive2D& rCandidate) SAL_OVERRIDE;
bool checkHairlineHitWithTolerance(
const basegfx::B2DPolygon& rPolygon,
double fDiscreteHitTolerance);
diff --git a/include/drawinglayer/processor2d/linegeometryextractor2d.hxx b/include/drawinglayer/processor2d/linegeometryextractor2d.hxx
index 3f9e46187165..e7d64e0d9c11 100644
--- a/include/drawinglayer/processor2d/linegeometryextractor2d.hxx
+++ b/include/drawinglayer/processor2d/linegeometryextractor2d.hxx
@@ -47,7 +47,7 @@ namespace drawinglayer
bool mbInLineGeometry : 1;
/// tooling methods
- void processBasePrimitive2D(const primitive2d::BasePrimitive2D& rCandidate);
+ void processBasePrimitive2D(const primitive2d::BasePrimitive2D& rCandidate) SAL_OVERRIDE;
public:
LineGeometryExtractor2D(const geometry::ViewInformation2D& rViewInformation);
diff --git a/include/drawinglayer/processor2d/objectinfoextractor2d.hxx b/include/drawinglayer/processor2d/objectinfoextractor2d.hxx
index 85be428a2eec..bee24bb69f42 100644
--- a/include/drawinglayer/processor2d/objectinfoextractor2d.hxx
+++ b/include/drawinglayer/processor2d/objectinfoextractor2d.hxx
@@ -44,7 +44,7 @@ namespace drawinglayer
const primitive2d::ObjectInfoPrimitive2D* mpFound;
/// tooling methods
- void processBasePrimitive2D(const primitive2d::BasePrimitive2D& rCandidate);
+ void processBasePrimitive2D(const primitive2d::BasePrimitive2D& rCandidate) SAL_OVERRIDE;
public:
ObjectInfoPrimitiveExtractor2D(const geometry::ViewInformation2D& rViewInformation);
diff --git a/include/drawinglayer/processor2d/textaspolygonextractor2d.hxx b/include/drawinglayer/processor2d/textaspolygonextractor2d.hxx
index 3da6b52ff4df..2cb798a39197 100644
--- a/include/drawinglayer/processor2d/textaspolygonextractor2d.hxx
+++ b/include/drawinglayer/processor2d/textaspolygonextractor2d.hxx
@@ -79,7 +79,7 @@ namespace drawinglayer
sal_uInt32 mnInText;
// tooling methods
- void processBasePrimitive2D(const primitive2d::BasePrimitive2D& rCandidate);
+ void processBasePrimitive2D(const primitive2d::BasePrimitive2D& rCandidate) SAL_OVERRIDE;
public:
explicit TextAsPolygonExtractor2D(const geometry::ViewInformation2D& rViewInformation);