Kaydet (Commit) 107d53ab authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:deletedspecial

Change-Id: Ifdd7a80704f4ccd093d58117131b83c74da8b029
üst 6b365a15
......@@ -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&();
......
......@@ -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;
......
......@@ -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 */
......
......@@ -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(){}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment