diff options
Diffstat (limited to 'connectivity/source/drivers/file')
-rw-r--r-- | connectivity/source/drivers/file/FConnection.cxx | 5 | ||||
-rw-r--r-- | connectivity/source/drivers/file/FResultSet.cxx | 5 | ||||
-rw-r--r-- | connectivity/source/drivers/file/FTable.cxx | 5 |
3 files changed, 6 insertions, 9 deletions
diff --git a/connectivity/source/drivers/file/FConnection.cxx b/connectivity/source/drivers/file/FConnection.cxx index 3b0dacea6f37..4d28d218bca6 100644 --- a/connectivity/source/drivers/file/FConnection.cxx +++ b/connectivity/source/drivers/file/FConnection.cxx @@ -408,9 +408,8 @@ sal_Int64 SAL_CALL OConnection::getSomething( const Sequence< sal_Int8 >& rId ) Sequence< sal_Int8 > OConnection::getUnoTunnelId() { - static ::cppu::OImplementationId implId; - - return implId.getImplementationId(); + static const comphelper::UnoIdInit implId; + return implId.getSeq(); } void OConnection::throwUrlNotValid(const OUString & _rsUrl,const OUString & _rsMessage) diff --git a/connectivity/source/drivers/file/FResultSet.cxx b/connectivity/source/drivers/file/FResultSet.cxx index 7c2649d8fc8f..13a678656fae 100644 --- a/connectivity/source/drivers/file/FResultSet.cxx +++ b/connectivity/source/drivers/file/FResultSet.cxx @@ -1382,9 +1382,8 @@ void OResultSet::OpenImpl() Sequence< sal_Int8 > OResultSet::getUnoTunnelId() { - static ::cppu::OImplementationId implId; - - return implId.getImplementationId(); + static const comphelper::UnoIdInit implId; + return implId.getSeq(); } // css::lang::XUnoTunnel diff --git a/connectivity/source/drivers/file/FTable.cxx b/connectivity/source/drivers/file/FTable.cxx index 7da609bb4ae0..6a6c10886c89 100644 --- a/connectivity/source/drivers/file/FTable.cxx +++ b/connectivity/source/drivers/file/FTable.cxx @@ -121,9 +121,8 @@ void SAL_CALL OFileTable::disposing() Sequence< sal_Int8 > OFileTable::getUnoTunnelId() { - static ::cppu::OImplementationId s_Id; - - return s_Id.getImplementationId(); + static const comphelper::UnoIdInit s_Id; + return s_Id.getSeq(); } // css::lang::XUnoTunnel |