diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-03-17 21:45:30 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-03-17 21:45:50 +0100 |
commit | 413f7c3642a6a237848e2c6d3b279bdf4d808c31 (patch) | |
tree | 4c33f42450f42c79ba4ac222105910ab8e3d94f6 /sd | |
parent | a81d60527bfe09bc54e6eb2e1281344773db0152 (diff) |
Remove oox::core::FilterBase::implGetImplementationName indirection
Change-Id: Ib275192452c6836cbaac2e517942ec5356dfd9ab
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/eppt/epptooxml.hxx | 2 | ||||
-rw-r--r-- | sd/source/filter/eppt/pptx-epptooxml.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/filter/eppt/epptooxml.hxx b/sd/source/filter/eppt/epptooxml.hxx index 9c977fe77562..f470066c76a5 100644 --- a/sd/source/filter/eppt/epptooxml.hxx +++ b/sd/source/filter/eppt/epptooxml.hxx @@ -133,7 +133,7 @@ private: void AddLayoutIdAndRelation( ::sax_fastparser::FSHelperPtr pFS, sal_Int32 nLayoutFileId ); - virtual OUString implGetImplementationName() const SAL_OVERRIDE; + virtual OUString SAL_CALL getImplementationName() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; ::boost::shared_ptr< ::oox::drawingml::chart::ChartConverter > mxChartConv; diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx index 98f80e32e91f..1ff74f5c79e9 100644 --- a/sd/source/filter/eppt/pptx-epptooxml.cxx +++ b/sd/source/filter/eppt/pptx-epptooxml.cxx @@ -2162,7 +2162,7 @@ uno::Reference< uno::XInterface > SAL_CALL PowerPointExport_createInstance(const return (cppu::OWeakObject*)new PowerPointExport( rxCtxt ); } -OUString PowerPointExport::implGetImplementationName() const +OUString PowerPointExport::getImplementationName() throw (css::uno::RuntimeException, std::exception) { return PowerPointExport_getImplementationName(); } |