diff options
Diffstat (limited to 'bridges/inc/cppinterfaceproxy.hxx')
-rw-r--r-- | bridges/inc/cppinterfaceproxy.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bridges/inc/cppinterfaceproxy.hxx b/bridges/inc/cppinterfaceproxy.hxx index d508146bdcb0..f4966d5a2eae 100644 --- a/bridges/inc/cppinterfaceproxy.hxx +++ b/bridges/inc/cppinterfaceproxy.hxx @@ -74,8 +74,8 @@ public: static CppInterfaceProxy * castInterfaceToProxy(void * pInterface); private: - CppInterfaceProxy(CppInterfaceProxy &) = delete; - void operator =(const CppInterfaceProxy&) = delete; + CppInterfaceProxy(CppInterfaceProxy const &) = delete; + CppInterfaceProxy& operator =(const CppInterfaceProxy&) = delete; CppInterfaceProxy( Bridge * pBridge_, uno_Interface * pUnoI_, |