diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2024-11-04 11:26:07 +0500 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2024-11-10 10:50:15 +0100 |
commit | 1180b3473aed3251b5869256abc9c7774bab9ced (patch) | |
tree | 72e169fd28db8da7b247290e2e53d530feae9d2b /binaryurp/source/proxy.hxx | |
parent | 7713d916e06a8388f849a758f928cbcfded6c0ae (diff) |
com::sun::star -> css
Change-Id: I890ec73e30d3cc6b210903ecee29431f3cb5f635
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/175979
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'binaryurp/source/proxy.hxx')
-rw-r--r-- | binaryurp/source/proxy.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/binaryurp/source/proxy.hxx b/binaryurp/source/proxy.hxx index 4e1fa3656ecc..e6c6de5c3d79 100644 --- a/binaryurp/source/proxy.hxx +++ b/binaryurp/source/proxy.hxx @@ -40,11 +40,11 @@ class Proxy: public uno_Interface { public: Proxy( rtl::Reference< Bridge > const & bridge, OUString oid, - com::sun::star::uno::TypeDescription type); + css::uno::TypeDescription type); const OUString& getOid() const { return oid_;} - const com::sun::star::uno::TypeDescription& getType() const { return type_;} + const css::uno::TypeDescription& getType() const { return type_;} void do_acquire(); @@ -58,7 +58,7 @@ public: static bool isProxy( rtl::Reference< Bridge > const & bridge, - com::sun::star::uno::UnoInterfaceReference const & object, + css::uno::UnoInterfaceReference const & object, OUString * oid); private: @@ -76,7 +76,7 @@ private: rtl::Reference< Bridge > bridge_; OUString oid_; - com::sun::star::uno::TypeDescription type_; + css::uno::TypeDescription type_; std::atomic<std::size_t> references_; }; |