From c1894cedc5167e88507b1ea498c89817b7d0cb50 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sat, 7 Feb 2015 12:15:26 +0100 Subject: loplugin:deletedspecial Change-Id: I314402f7256a4b47c1a14255c39165702e21c226 --- fpicker/source/office/asyncfilepicker.hxx | 5 ++--- fpicker/source/office/fpsmartcontent.hxx | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/fpicker/source/office/asyncfilepicker.hxx b/fpicker/source/office/asyncfilepicker.hxx index cea8899f22f3..a2dfa11c7076 100644 --- a/fpicker/source/office/asyncfilepicker.hxx +++ b/fpicker/source/office/asyncfilepicker.hxx @@ -89,9 +89,8 @@ namespace svt private: DECL_LINK( OnActionDone, void* ); - AsyncPickerAction(); // never implemented - AsyncPickerAction( const AsyncPickerAction& ); // never implemented - AsyncPickerAction& operator=( const AsyncPickerAction& ); // never implemented + AsyncPickerAction( const AsyncPickerAction& ) SAL_DELETED_FUNCTION; + AsyncPickerAction& operator=( const AsyncPickerAction& ) SAL_DELETED_FUNCTION; }; diff --git a/fpicker/source/office/fpsmartcontent.hxx b/fpicker/source/office/fpsmartcontent.hxx index 7d3d7bd8c83d..cce20ec5061e 100644 --- a/fpicker/source/office/fpsmartcontent.hxx +++ b/fpicker/source/office/fpsmartcontent.hxx @@ -61,8 +61,8 @@ namespace svt /// checks if the currently bound content is a folder or document bool implIs( const OUString& _rURL, Type _eType ); - SmartContent( const SmartContent& _rSource ); // never implemented - SmartContent& operator=( const SmartContent& _rSource ); // never implemented + SmartContent( const SmartContent& _rSource ) SAL_DELETED_FUNCTION; + SmartContent& operator=( const SmartContent& _rSource ) SAL_DELETED_FUNCTION; public: SmartContent(); -- cgit