diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-01-21 01:29:51 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-01-21 19:58:44 +0100 |
commit | 89898395899f4b2935689a5666d0734ba3d63511 (patch) | |
tree | 9c0ef7011eb6b0ba07c91f5b050858b0584ca673 /oox | |
parent | 08d47e3491f0d55467ebbe723020172b768b37b4 (diff) |
Remove unused Get/SetXmlNamespace
Diffstat (limited to 'oox')
-rw-r--r-- | oox/inc/oox/export/chartexport.hxx | 2 | ||||
-rw-r--r-- | oox/inc/oox/export/shapes.hxx | 3 | ||||
-rw-r--r-- | oox/source/export/chartexport.cxx | 11 | ||||
-rw-r--r-- | oox/source/export/shapes.cxx | 11 |
4 files changed, 0 insertions, 27 deletions
diff --git a/oox/inc/oox/export/chartexport.hxx b/oox/inc/oox/export/chartexport.hxx index 6d037792db16..5bca83f92048 100644 --- a/oox/inc/oox/export/chartexport.hxx +++ b/oox/inc/oox/export/chartexport.hxx @@ -196,8 +196,6 @@ public: ChartExport( sal_Int32 nXmlNamespace, ::sax_fastparser::FSHelperPtr pFS, ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >& xModel, ::oox::core::XmlFilterBase* pFB = NULL, DocumentType eDocumentType = DOCUMENT_PPTX ); virtual ~ChartExport() {} - sal_Int32 GetXmlNamespace() const; - ChartExport& SetXmlNamespace( sal_Int32 nXmlNamespace ); sal_Int32 GetChartID( ); ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel > getModel(){ return mxChartModel; } diff --git a/oox/inc/oox/export/shapes.hxx b/oox/inc/oox/export/shapes.hxx index a9459c8540f7..b043c3f90643 100644 --- a/oox/inc/oox/export/shapes.hxx +++ b/oox/inc/oox/export/shapes.hxx @@ -85,9 +85,6 @@ public: ShapeExport( sal_Int32 nXmlNamespace, ::sax_fastparser::FSHelperPtr pFS, ShapeHashMap* pShapeMap = NULL, ::oox::core::XmlFilterBase* pFB = NULL, DocumentType eDocumentType = DOCUMENT_PPTX ); virtual ~ShapeExport() {} - sal_Int32 GetXmlNamespace() const; - ShapeExport& SetXmlNamespace( sal_Int32 nXmlNamespace ); - static sal_Bool NonEmptyText( ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > xIface ); virtual ShapeExport& diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index d6acf3f86ba0..4bdb9dfde7d2 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -564,17 +564,6 @@ ChartExport::ChartExport( sal_Int32 nXmlNamespace, FSHelperPtr pFS, Reference< f { } -sal_Int32 ChartExport::GetXmlNamespace() const -{ - return mnXmlNamespace; -} - -ChartExport& ChartExport::SetXmlNamespace( sal_Int32 nXmlNamespace ) -{ - mnXmlNamespace = nXmlNamespace; - return *this; -} - sal_Int32 ChartExport::GetChartID( ) { sal_Int32 nID = GetFB()->GetUniqueId(); diff --git a/oox/source/export/shapes.cxx b/oox/source/export/shapes.cxx index 5b1b8105ffd7..640418447d1f 100644 --- a/oox/source/export/shapes.cxx +++ b/oox/source/export/shapes.cxx @@ -577,17 +577,6 @@ ShapeExport::ShapeExport( sal_Int32 nXmlNamespace, FSHelperPtr pFS, ShapeHashMap { } -sal_Int32 ShapeExport::GetXmlNamespace() const -{ - return mnXmlNamespace; -} - -ShapeExport& ShapeExport::SetXmlNamespace( sal_Int32 nXmlNamespace ) -{ - mnXmlNamespace = nXmlNamespace; - return *this; -} - awt::Size ShapeExport::MapSize( const awt::Size& rSize ) const { Size aRetSize( OutputDevice::LogicToLogic( Size( rSize.Width, rSize.Height ), maMapModeSrc, maMapModeDest ) ); |