summaryrefslogtreecommitdiff
path: root/basegfx/inc/basegfx/point
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/inc/basegfx/point
parentfddd006495f0c8584c85ff22ad0041094ea9a8cd (diff)
sprinkle explicit over constructors
Change-Id: I6599147a74e5c99f964b08935ec7c77f2d4cadef
Diffstat (limited to 'basegfx/inc/basegfx/point')
-rw-r--r--basegfx/inc/basegfx/point/b2dpoint.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basegfx/inc/basegfx/point/b2dpoint.hxx b/basegfx/inc/basegfx/point/b2dpoint.hxx
index c5b69b8c01d3..9c8056abe7d9 100644
--- a/basegfx/inc/basegfx/point/b2dpoint.hxx
+++ b/basegfx/inc/basegfx/point/b2dpoint.hxx
@@ -87,7 +87,7 @@ namespace basegfx
@param rPoint
The 2D Point which will be copied.
*/
- B2DPoint(const ::basegfx::B2IPoint& rPoint)
+ explicit B2DPoint(const ::basegfx::B2IPoint& rPoint)
: B2DTuple(rPoint)
{}