diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 15:25:41 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 17:52:26 +0200 |
commit | bff4c13475957863bfa7da5bc3bcf82a64a7503a (patch) | |
tree | 23530ecc27cb8d46b26d5d4aea6b058e5fbaf9db /include/sot | |
parent | 27491c28cb67ada0a4c5eaa90eaf589425990582 (diff) |
Replace "SAL_DELETED_FUNCTION" with "= delete" in LIBO_INTERNAL_ONLY code
Change-Id: I328ac7a95ccc87732efae48b567a0556865928f3
Diffstat (limited to 'include/sot')
-rw-r--r-- | include/sot/factory.hxx | 4 | ||||
-rw-r--r-- | include/sot/object.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/sot/factory.hxx b/include/sot/factory.hxx index 659dae88214c..03bdea2b4d11 100644 --- a/include/sot/factory.hxx +++ b/include/sot/factory.hxx @@ -56,8 +56,8 @@ public: bool Is( const SotFactory * pSuperClass ) const; private: - SotFactory( const SotFactory & ) SAL_DELETED_FUNCTION; - SotFactory & operator = ( const SotFactory & ) SAL_DELETED_FUNCTION; + SotFactory( const SotFactory & ) = delete; + SotFactory & operator = ( const SotFactory & ) = delete; }; #endif // _FACTORY_HXX diff --git a/include/sot/object.hxx b/include/sot/object.hxx index 4d140969c286..6699d925e0d2 100644 --- a/include/sot/object.hxx +++ b/include/sot/object.hxx @@ -55,8 +55,8 @@ public: bool IsInClose() const { return bInClose; } private: - SotObject & operator = ( const SotObject & ) SAL_DELETED_FUNCTION; - SotObject( const SotObject & ) SAL_DELETED_FUNCTION; + SotObject & operator = ( const SotObject & ) = delete; + SotObject( const SotObject & ) = delete; }; #endif // _IFACE_HXX |