diff options
Diffstat (limited to 'sd/source/ui/unoidl/DrawController.cxx')
-rw-r--r-- | sd/source/ui/unoidl/DrawController.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/unoidl/DrawController.cxx b/sd/source/ui/unoidl/DrawController.cxx index e477f8b9b725..39a763ec8c45 100644 --- a/sd/source/ui/unoidl/DrawController.cxx +++ b/sd/source/ui/unoidl/DrawController.cxx @@ -555,7 +555,7 @@ Reference<XModuleController> SAL_CALL const Sequence<sal_Int8>& DrawController::getUnoTunnelId() { - static const UnoTunnelIdInit theDrawControllerUnoTunnelId; + static const comphelper::UnoIdInit theDrawControllerUnoTunnelId; return theDrawControllerUnoTunnelId.getSeq(); } @@ -563,7 +563,7 @@ sal_Int64 SAL_CALL DrawController::getSomething (const Sequence<sal_Int8>& rId) { sal_Int64 nResult = 0; - if (isUnoTunnelId<DrawController>(rId)) + if (comphelper::isUnoTunnelId<DrawController>(rId)) { nResult = sal::static_int_cast<sal_Int64>(reinterpret_cast<sal_IntPtr>(this)); } |