diff options
-rw-r--r-- | include/tools/line.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tools/line.hxx b/include/tools/line.hxx index 58b94e0c68c0..97cf449fc1b1 100644 --- a/include/tools/line.hxx +++ b/include/tools/line.hxx @@ -46,7 +46,7 @@ public: bool Intersection( const tools::Line& rLine, Point& rIntersection ) const; double GetDistance( const double& rPtX, const double& rPtY ) const; - double GetDistance( const Point& rPoint ) const { return( GetDistance( rPoint.X(), rPoint.Y() ) ); } + double GetDistance( const Point& rPoint ) const { return GetDistance( rPoint.X(), rPoint.Y() ); } }; } // namespace tools |