summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-02-07 12:15:26 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-02-07 12:35:59 +0100
commitc1894cedc5167e88507b1ea498c89817b7d0cb50 (patch)
tree0fe21282a6687bb52f189d4248826976930a4c2c /fpicker
parent3f56e6551b41a8a4768f975b36208b1a4fdb3328 (diff)
loplugin:deletedspecial
Change-Id: I314402f7256a4b47c1a14255c39165702e21c226
Diffstat (limited to 'fpicker')
-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();