summaryrefslogtreecommitdiff
path: root/include/filter
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-02-07 12:14:24 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-02-07 12:35:58 +0100
commit107d53ab883751826e0c6b1e9399ed2454c1f657 (patch)
treeb0eb626481c486e0b5d825ec248b7819f33895eb /include/filter
parent6b365a156e467eb90101986c63c4f5e458a0e8c2 (diff)
loplugin:deletedspecial
Change-Id: Ifdd7a80704f4ccd093d58117131b83c74da8b029
Diffstat (limited to 'include/filter')
-rw-r--r--include/filter/msfilter/escherex.hxx4
-rw-r--r--include/filter/msfilter/mscodec.hxx8
-rw-r--r--include/filter/msfilter/msdffimp.hxx2
-rw-r--r--include/filter/msfilter/mstoolbar.hxx8
4 files changed, 11 insertions, 11 deletions
diff --git a/include/filter/msfilter/escherex.hxx b/include/filter/msfilter/escherex.hxx
index 546d2d0eea6c..93f8d35d52fd 100644
--- a/include/filter/msfilter/escherex.hxx
+++ b/include/filter/msfilter/escherex.hxx
@@ -1335,8 +1335,8 @@ public:
sal_uInt16 GetHellLayerId() const { return mnHellLayerId; }
private:
- EscherEx( const EscherEx& );
- EscherEx& operator=( const EscherEx& );
+ EscherEx( const EscherEx& ) SAL_DELETED_FUNCTION;
+ EscherEx& operator=( const EscherEx& ) SAL_DELETED_FUNCTION;
// prevent C-style cast to former base class EscherGraphicProvider
operator EscherGraphicProvider&();
diff --git a/include/filter/msfilter/mscodec.hxx b/include/filter/msfilter/mscodec.hxx
index f3a233ffd839..65ead101abf0 100644
--- a/include/filter/msfilter/mscodec.hxx
+++ b/include/filter/msfilter/mscodec.hxx
@@ -122,8 +122,8 @@ protected:
sal_Size mnOffset; /// Key offset.
private:
- MSFILTER_DLLPRIVATE MSCodec_Xor95( const MSCodec_Xor95& );
- MSFILTER_DLLPRIVATE MSCodec_Xor95& operator=( const MSCodec_Xor95& );
+ MSCodec_Xor95( const MSCodec_Xor95& ) SAL_DELETED_FUNCTION;
+ MSCodec_Xor95& operator=( const MSCodec_Xor95& ) SAL_DELETED_FUNCTION;
sal_uInt16 mnKey; /// Base key from password.
sal_uInt16 mnHash; /// Hash value from password.
@@ -352,8 +352,8 @@ private:
private:
- MSFILTER_DLLPRIVATE MSCodec_Std97( const MSCodec_Std97& );
- MSFILTER_DLLPRIVATE MSCodec_Std97& operator=( const MSCodec_Std97& );
+ MSCodec_Std97( const MSCodec_Std97& ) SAL_DELETED_FUNCTION;
+ MSCodec_Std97& operator=( const MSCodec_Std97& ) SAL_DELETED_FUNCTION;
rtlCipher m_hCipher;
rtlDigest m_hDigest;
diff --git a/include/filter/msfilter/msdffimp.hxx b/include/filter/msfilter/msdffimp.hxx
index e6342f72d0df..c85429eecd84 100644
--- a/include/filter/msfilter/msdffimp.hxx
+++ b/include/filter/msfilter/msdffimp.hxx
@@ -266,7 +266,7 @@ struct MSFILTER_DLLPUBLIC SvxMSDffImportRec
{ return nShapeId < rEntry.nShapeId; }
private:
- SvxMSDffImportRec &operator=(const SvxMSDffImportRec&);
+ SvxMSDffImportRec &operator=(const SvxMSDffImportRec&) SAL_DELETED_FUNCTION;
};
/** list of all SvxMSDffImportRec instances of/for a group */
diff --git a/include/filter/msfilter/mstoolbar.hxx b/include/filter/msfilter/mstoolbar.hxx
index b6bb4c14da06..2ad8338e9932 100644
--- a/include/filter/msfilter/mstoolbar.hxx
+++ b/include/filter/msfilter/mstoolbar.hxx
@@ -121,8 +121,8 @@ class MSFILTER_DLLPUBLIC TBCExtraInfo : public TBBase
sal_Int8 tbcu;
sal_Int8 tbmg;
- TBCExtraInfo(const TBCExtraInfo&);
- TBCExtraInfo& operator = ( const TBCExtraInfo&);
+ TBCExtraInfo(const TBCExtraInfo&) SAL_DELETED_FUNCTION;
+ TBCExtraInfo& operator = ( const TBCExtraInfo&) SAL_DELETED_FUNCTION;
public:
TBCExtraInfo();
virtual ~TBCExtraInfo(){}
@@ -288,8 +288,8 @@ class MSFILTER_DLLPUBLIC TBCData : public TBBase
TBCHeader rHeader;
TBCGeneralInfo controlGeneralInfo;
boost::shared_ptr< TBBase > controlSpecificInfo; // can be one of TBCBSpecific, TBCMenuSpecific or TBCComboDropdow nSpecific depending on the control type specified by TBCHeader.tct
- TBCData(const TBCData&);
- TBCData& operator = ( const TBCData&);
+ TBCData(const TBCData&) SAL_DELETED_FUNCTION;
+ TBCData& operator = ( const TBCData&) SAL_DELETED_FUNCTION;
public:
TBCData( const TBCHeader& Header );
virtual ~TBCData(){}