diff options
Diffstat (limited to 'pyuno')
-rw-r--r-- | pyuno/source/module/pyuno_adapter.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyuno/source/module/pyuno_adapter.cxx b/pyuno/source/module/pyuno_adapter.cxx index a6d10da1d779..3bca5c232a11 100644 --- a/pyuno/source/module/pyuno_adapter.cxx +++ b/pyuno/source/module/pyuno_adapter.cxx @@ -69,8 +69,8 @@ Adapter::~Adapter() Sequence<sal_Int8> Adapter::getUnoTunnelId() { - static const cppu::OImplementationId g_id(false); - return g_id.getImplementationId(); + static const comphelper::UnoIdInit g_id; + return g_id.getSeq(); } sal_Int64 Adapter::getSomething( const Sequence< sal_Int8 > &id) |