diff options
author | Mariana Marasoiu <mariana.marasoiu@gmail.com> | 2012-03-14 01:07:16 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-03-14 16:41:08 +0000 |
commit | 0b54154f53ff06d205671fa3e3698d72f3bb6f64 (patch) | |
tree | aca0f50845b78ae3afda39bfc3ec865041a39d2b /oox | |
parent | e6c0961c3d7d99591ffd8aca454623ec0d8fdefd (diff) |
Remove unused code in drawingml.
Diffstat (limited to 'oox')
-rw-r--r-- | oox/inc/oox/drawingml/customshapeproperties.hxx | 1 | ||||
-rw-r--r-- | oox/source/drawingml/customshapeproperties.cxx | 10 |
2 files changed, 0 insertions, 11 deletions
diff --git a/oox/inc/oox/drawingml/customshapeproperties.hxx b/oox/inc/oox/drawingml/customshapeproperties.hxx index 957a32a34eda..16ef7a75379b 100644 --- a/oox/inc/oox/drawingml/customshapeproperties.hxx +++ b/oox/inc/oox/drawingml/customshapeproperties.hxx @@ -156,7 +156,6 @@ public: void setMirroredY( sal_Bool bMirroredY ) { mbMirroredY = bMirroredY; }; void setTextRotateAngle( sal_Int32 nAngle ) { mnTextRotateAngle = nAngle; }; - double getValue( const std::vector< CustomShapeGuide >&, sal_uInt32 nIndex ) const; static sal_Int32 SetCustomShapeGuideValue( std::vector< CustomShapeGuide >& rGuideList, const CustomShapeGuide& rGuide ); static sal_Int32 GetCustomShapeGuideValue( const std::vector< CustomShapeGuide >& rGuideList, const rtl::OUString& rFormulaName ); diff --git a/oox/source/drawingml/customshapeproperties.cxx b/oox/source/drawingml/customshapeproperties.cxx index 29844b8f173d..071f37a40f25 100644 --- a/oox/source/drawingml/customshapeproperties.cxx +++ b/oox/source/drawingml/customshapeproperties.cxx @@ -359,16 +359,6 @@ void CustomShapeProperties::pushToPropSet( const ::oox::core::FilterBase& /* rFi } } -double CustomShapeProperties::getValue( const std::vector< CustomShapeGuide >& rGuideList, sal_uInt32 nIndex ) const -{ - double fRet = 0.0; - if ( nIndex < rGuideList.size() ) - { - - } - return fRet; -} - Any CustomShapeProvider::createStringSequence( size_t nStrings, const char **pStrings ) { Sequence< OUString > aStringSequence( nStrings ); |