diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-02-07 12:31:07 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-02-07 12:36:03 +0100 |
commit | 6e26cc140bf0254a88a1d4c6e82cbaee39ced418 (patch) | |
tree | 4c9a62c32f7b9df3618ab502a08d1a0829d81c03 /include/svx/svdobj.hxx | |
parent | f862290c91e66b859504e6c271309f73fa762a0d (diff) |
loplugin:deletedspecial
Change-Id: I1ffc6af694367f0ff70b7598c093203f1f68882c
Diffstat (limited to 'include/svx/svdobj.hxx')
-rw-r--r-- | include/svx/svdobj.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/svdobj.hxx b/include/svx/svdobj.hxx index ab94f3150d03..1d83a024e055 100644 --- a/include/svx/svdobj.hxx +++ b/include/svx/svdobj.hxx @@ -194,9 +194,9 @@ protected: sal_uInt16 nVersion; private: - SVX_DLLPRIVATE void operator=(const SdrObjUserData& rData); // not implemented - SVX_DLLPRIVATE bool operator==(const SdrObjUserData& rData) const; // not implemented - SVX_DLLPRIVATE bool operator!=(const SdrObjUserData& rData) const; // not implemented + void operator=(const SdrObjUserData& rData) SAL_DELETED_FUNCTION; + bool operator==(const SdrObjUserData& rData) const SAL_DELETED_FUNCTION; + bool operator!=(const SdrObjUserData& rData) const SAL_DELETED_FUNCTION; public: TYPEINFO(); @@ -273,7 +273,7 @@ private: struct Impl; Impl* mpImpl; - SdrObject( const SdrObject& ); // disabled + SdrObject( const SdrObject& ) SAL_DELETED_FUNCTION; public: void AddObjectUser(sdr::ObjectUser& rNewUser); |