diff options
Diffstat (limited to 'svx/source/dialog/framelink.cxx')
-rw-r--r-- | svx/source/dialog/framelink.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/dialog/framelink.cxx b/svx/source/dialog/framelink.cxx index 664d4f7c0356..fd85200dbca5 100644 --- a/svx/source/dialog/framelink.cxx +++ b/svx/source/dialog/framelink.cxx @@ -713,9 +713,9 @@ inline Point lclToMapUnit( long nSubXPos, long nSubYPos ) } /** Returns a polygon constructed from a vector of points. */ -inline Polygon lclCreatePolygon( const PointVec& rPoints ) +inline tools::Polygon lclCreatePolygon( const PointVec& rPoints ) { - return Polygon( static_cast< sal_uInt16 >( rPoints.size() ), &rPoints[ 0 ] ); + return tools::Polygon( static_cast< sal_uInt16 >( rPoints.size() ), &rPoints[ 0 ] ); } /** Returns a polygon constructed from the five passed points. */ |