diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 12:48:44 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 12:48:44 +0200 |
commit | 2fc4a8c8113b1bf78258845ed06662a07996a6af (patch) | |
tree | db055018db2d6190438b451444f337215a76917f /xmlhelp/source | |
parent | 7ea8046c741c8b7b608f26e312cc5f1056752c09 (diff) |
Add support for cppu::UnoType<void>
Change-Id: I88259ffaffc73979c240721d2db166c79d3085f1
Diffstat (limited to 'xmlhelp/source')
-rw-r--r-- | xmlhelp/source/cxxhelp/inc/tvread.hxx | 2 | ||||
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/contentcaps.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/xmlhelp/source/cxxhelp/inc/tvread.hxx b/xmlhelp/source/cxxhelp/inc/tvread.hxx index 09090e2d615f..70449f8a1f65 100644 --- a/xmlhelp/source/cxxhelp/inc/tvread.hxx +++ b/xmlhelp/source/cxxhelp/inc/tvread.hxx @@ -79,7 +79,7 @@ namespace treeview { getElementType( ) throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE { - return cppu::UnoType<cppu::UnoVoidType>::get(); + return cppu::UnoType<void>::get(); } virtual sal_Bool SAL_CALL hasElements() diff --git a/xmlhelp/source/cxxhelp/provider/contentcaps.cxx b/xmlhelp/source/cxxhelp/provider/contentcaps.cxx index 3314b83af618..15ad6ba6af76 100644 --- a/xmlhelp/source/cxxhelp/provider/contentcaps.cxx +++ b/xmlhelp/source/cxxhelp/provider/contentcaps.cxx @@ -167,12 +167,12 @@ uno::Sequence< ucb::CommandInfo > Content::getCommands( ucb::CommandInfo( "getCommandInfo", -1, - cppu::UnoType<cppu::UnoVoidType>::get() + cppu::UnoType<void>::get() ), ucb::CommandInfo( "getPropertySetInfo", -1, - cppu::UnoType<cppu::UnoVoidType>::get() + cppu::UnoType<void>::get() ), ucb::CommandInfo( "getPropertyValues", |