diff options
-rw-r--r-- | sd/source/ui/unoidl/unomodel.cxx | 7 | ||||
-rw-r--r-- | sd/source/ui/unoidl/unopage.cxx | 14 |
2 files changed, 3 insertions, 18 deletions
diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx index fb155b09021c..5eba9be797f7 100644 --- a/sd/source/ui/unoidl/unomodel.cxx +++ b/sd/source/ui/unoidl/unomodel.cxx @@ -379,14 +379,9 @@ uno::Sequence< uno::Type > SAL_CALL SdXImpressDocument::getTypes( ) throw(uno:: return maTypeSequence; } -namespace -{ - class theSdXImpressDocumentImplementationId : public rtl::Static< UnoTunnelIdInit, theSdXImpressDocumentImplementationId > {}; -} - uno::Sequence< sal_Int8 > SAL_CALL SdXImpressDocument::getImplementationId( ) throw(uno::RuntimeException, std::exception) { - return theSdXImpressDocumentImplementationId::get().getSeq(); + return css::uno::Sequence<sal_Int8>(); } /*********************************************************************** diff --git a/sd/source/ui/unoidl/unopage.cxx b/sd/source/ui/unoidl/unopage.cxx index 09cdc3fc5760..4f199891da26 100644 --- a/sd/source/ui/unoidl/unopage.cxx +++ b/sd/source/ui/unoidl/unopage.cxx @@ -2115,14 +2115,9 @@ Sequence< uno::Type > SAL_CALL SdDrawPage::getTypes() throw(uno::RuntimeExceptio return maTypeSequence; } -namespace -{ - class theSdDrawPageImplementationId : public rtl::Static< UnoTunnelIdInit, theSdDrawPageImplementationId > {}; -} - Sequence< sal_Int8 > SAL_CALL SdDrawPage::getImplementationId() throw(uno::RuntimeException, std::exception) { - return theSdDrawPageImplementationId::get().getSeq(); + return css::uno::Sequence<sal_Int8>(); } OUString SdDrawPage::getPageApiName( SdPage* pPage ) @@ -2765,14 +2760,9 @@ Sequence< uno::Type > SAL_CALL SdMasterPage::getTypes() throw(uno::RuntimeExcept return maTypeSequence; } -namespace -{ - class theSdMasterPageImplementationId : public rtl::Static< UnoTunnelIdInit, theSdMasterPageImplementationId > {}; -} - Sequence< sal_Int8 > SAL_CALL SdMasterPage::getImplementationId() throw(uno::RuntimeException, std::exception) { - return theSdMasterPageImplementationId::get().getSeq(); + return css::uno::Sequence<sal_Int8>(); } // XServiceInfo |