diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-09 22:32:52 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-10 11:49:49 +0100 |
commit | a37338e74267db0a0a6d0fe453598f95611b134c (patch) | |
tree | 7fc763362b345eb92c710811c3bfd875cf8d4273 /svx/source/dialog | |
parent | d865fed229035440eccb8a89aa3f44f64e0f696c (diff) |
callcatcher: remove some unused methods
Diffstat (limited to 'svx/source/dialog')
-rw-r--r-- | svx/source/dialog/framelink.cxx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/svx/source/dialog/framelink.cxx b/svx/source/dialog/framelink.cxx index 5d2a9005d368..4b045f30ae1c 100644 --- a/svx/source/dialog/framelink.cxx +++ b/svx/source/dialog/framelink.cxx @@ -741,18 +741,6 @@ inline Polygon lclCreatePolygon( const PointVec& rPoints ) return Polygon( static_cast< sal_uInt16 >( rPoints.size() ), &rPoints[ 0 ] ); } -/** Returns a polygon constructed from the four passed points. */ -Polygon lclCreatePolygon( const Point& rP1, const Point& rP2, const Point& rP3, const Point& rP4 ) -{ - PointVec aPoints; - aPoints.reserve( 2 ); - aPoints.push_back( rP1 ); - aPoints.push_back( rP2 ); - aPoints.push_back( rP3 ); - aPoints.push_back( rP4 ); - return lclCreatePolygon( aPoints ); -} - /** Returns a polygon constructed from the five passed points. */ Polygon lclCreatePolygon( const Point& rP1, const Point& rP2, const Point& rP3, const Point& rP4, const Point& rP5 ) { |