From 5efac16be63274ff5e578cb3406accf75ae0f174 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sat, 7 Feb 2015 12:13:35 +0100 Subject: loplugin:deletedspecial Change-Id: Ia5cdc216ef4e5ebb11709fa1079e70c9ac2ff360 --- include/editeng/unolingu.hxx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'include/editeng/unolingu.hxx') diff --git a/include/editeng/unolingu.hxx b/include/editeng/unolingu.hxx index 72d1567e7b9e..2b35bed79c3d 100644 --- a/include/editeng/unolingu.hxx +++ b/include/editeng/unolingu.hxx @@ -80,9 +80,8 @@ class EDITENG_DLLPUBLIC LinguMgr static ::com::sun::star::uno::Reference< ::com::sun::star::linguistic2::XDictionary > GetChangeAll(); - // disallow access to copy-constructor and assignment-operator - LinguMgr(const LinguMgr &); - LinguMgr & operator = (const LinguMgr &); + LinguMgr(const LinguMgr &) SAL_DELETED_FUNCTION; + LinguMgr & operator = (const LinguMgr &) SAL_DELETED_FUNCTION; public: @@ -146,9 +145,8 @@ private: ::com::sun::star::uno::Reference< ::com::sun::star::linguistic2::XSearchableDictionaryList > xDicList; - // disallow access to copy-constructor and assignment-operator - EDITENG_DLLPRIVATE SvxDicListChgClamp(const SvxDicListChgClamp &); - EDITENG_DLLPRIVATE SvxDicListChgClamp & operator = (const SvxDicListChgClamp &); + SvxDicListChgClamp(const SvxDicListChgClamp &) SAL_DELETED_FUNCTION; + SvxDicListChgClamp & operator = (const SvxDicListChgClamp &) SAL_DELETED_FUNCTION; public: SvxDicListChgClamp( ::com::sun::star::uno::Reference< -- cgit