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 /linguistic/inc | |
parent | 27491c28cb67ada0a4c5eaa90eaf589425990582 (diff) |
Replace "SAL_DELETED_FUNCTION" with "= delete" in LIBO_INTERNAL_ONLY code
Change-Id: I328ac7a95ccc87732efae48b567a0556865928f3
Diffstat (limited to 'linguistic/inc')
-rw-r--r-- | linguistic/inc/iprcache.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linguistic/inc/iprcache.hxx b/linguistic/inc/iprcache.hxx index 095055479cd4..9b15b68362c2 100644 --- a/linguistic/inc/iprcache.hxx +++ b/linguistic/inc/iprcache.hxx @@ -52,8 +52,8 @@ class FlushListener : css::uno::Reference< css::linguistic2::XLinguProperties > xPropSet; SpellCache& mrSpellCache; - FlushListener(const FlushListener &) SAL_DELETED_FUNCTION; - FlushListener & operator = (const FlushListener &) SAL_DELETED_FUNCTION; + FlushListener(const FlushListener &) = delete; + FlushListener & operator = (const FlushListener &) = delete; public: FlushListener( SpellCache& rFO ) : mrSpellCache(rFO) {} @@ -84,8 +84,8 @@ class SpellCache typedef std::map< LanguageType, WordList_t > LangWordList_t; LangWordList_t aWordLists; - SpellCache(const SpellCache &) SAL_DELETED_FUNCTION; - SpellCache & operator = (const SpellCache &) SAL_DELETED_FUNCTION; + SpellCache(const SpellCache &) = delete; + SpellCache & operator = (const SpellCache &) = delete; public: SpellCache(); |