summaryrefslogtreecommitdiff
path: root/basegfx/source/polygon/b2dpolypolygoncutter.cxx
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2012-07-03 08:53:24 +0200
committerDavid Tardon <dtardon@redhat.com>2012-07-03 17:47:18 +0200
commit9bd1acd164a9f8f4188ca06527ccc0fece7d0c19 (patch)
treeea82824dfc4c591d502ae28d5d1efed206f2090e /basegfx/source/polygon/b2dpolypolygoncutter.cxx
parentfddd006495f0c8584c85ff22ad0041094ea9a8cd (diff)
sprinkle explicit over constructors
Change-Id: I6599147a74e5c99f964b08935ec7c77f2d4cadef
Diffstat (limited to 'basegfx/source/polygon/b2dpolypolygoncutter.cxx')
-rw-r--r--basegfx/source/polygon/b2dpolypolygoncutter.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/polygon/b2dpolypolygoncutter.cxx b/basegfx/source/polygon/b2dpolypolygoncutter.cxx
index 522bc3701556..05e555f213ba 100644
--- a/basegfx/source/polygon/b2dpolypolygoncutter.cxx
+++ b/basegfx/source/polygon/b2dpolypolygoncutter.cxx
@@ -466,7 +466,7 @@ namespace basegfx
}
public:
- solver(const B2DPolygon& rOriginal)
+ explicit solver(const B2DPolygon& rOriginal)
: maOriginal(B2DPolyPolygon(rOriginal)),
mbIsCurve(false),
mbChanged(false)
@@ -501,7 +501,7 @@ namespace basegfx
}
}
- solver(const B2DPolyPolygon& rOriginal)
+ explicit solver(const B2DPolyPolygon& rOriginal)
: maOriginal(rOriginal),
mbIsCurve(false),
mbChanged(false)