diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-10 16:15:26 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-10 17:39:59 +0100 |
commit | 3b0b4ac5fc16a5f5568dd4da63818723b6d1d6fd (patch) | |
tree | a4e997e80b83d4e9a5c1767f5af285eea2acf781 /svx/source/unogallery/unogaltheme.cxx | |
parent | 62fae8bda81508828cca4ed8d2911961ce1971a4 (diff) |
svx: simplify deprecated XTypeProvider.getImplementationId
Change-Id: I520563a98c1285fed97174d2aaedfdd042ca699f
Diffstat (limited to 'svx/source/unogallery/unogaltheme.cxx')
-rw-r--r-- | svx/source/unogallery/unogaltheme.cxx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/svx/source/unogallery/unogaltheme.cxx b/svx/source/unogallery/unogaltheme.cxx index 56a00946e438..9e43d0d0cd93 100644 --- a/svx/source/unogallery/unogaltheme.cxx +++ b/svx/source/unogallery/unogaltheme.cxx @@ -123,15 +123,10 @@ uno::Sequence< uno::Type > SAL_CALL GalleryTheme::getTypes() return aTypes; } -namespace -{ - class theGalleryThemeImplementationId : public rtl::Static< UnoTunnelIdInit, theGalleryThemeImplementationId > {}; -} - uno::Sequence< sal_Int8 > SAL_CALL GalleryTheme::getImplementationId() throw(uno::RuntimeException, std::exception) { - return theGalleryThemeImplementationId::get().getSeq(); + return css::uno::Sequence<sal_Int8>(); } |