summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fpicker/source/office/asyncfilepicker.hxx5
-rw-r--r--fpicker/source/office/fpsmartcontent.hxx4
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();