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

loplugin:deletedspecial

Change-Id: I806c9799f6eac357e5f200b53df3a9c1e6ecd841
üst 61fe89e0
...@@ -47,9 +47,8 @@ public: ...@@ -47,9 +47,8 @@ public:
virtual void EndElement() SAL_OVERRIDE; virtual void EndElement() SAL_OVERRIDE;
private: private:
XMLDocumentSettingsContext(); // never implemented XMLDocumentSettingsContext( const XMLDocumentSettingsContext& ) SAL_DELETED_FUNCTION;
XMLDocumentSettingsContext( const XMLDocumentSettingsContext& ); // never implemented XMLDocumentSettingsContext& operator=( const XMLDocumentSettingsContext& ) SAL_DELETED_FUNCTION;
XMLDocumentSettingsContext& operator=( const XMLDocumentSettingsContext& ); // never implemented
}; };
#endif #endif
......
...@@ -56,9 +56,8 @@ public: ...@@ -56,9 +56,8 @@ public:
void SetDestinationShellID( const OUString& rShellID ); void SetDestinationShellID( const OUString& rShellID );
private: private:
SchXMLExportHelper(); // not defined SchXMLExportHelper(SchXMLExportHelper &) SAL_DELETED_FUNCTION;
SchXMLExportHelper(SchXMLExportHelper &); // not defined void operator =(SchXMLExportHelper &) SAL_DELETED_FUNCTION;
void operator =(SchXMLExportHelper &); // not defined
private: private:
SchXMLExportHelper_Impl* m_pImpl; SchXMLExportHelper_Impl* m_pImpl;
......
...@@ -25,8 +25,8 @@ ...@@ -25,8 +25,8 @@
class XMLOFF_DLLPUBLIC XMLCharContext : public SvXMLImportContext class XMLOFF_DLLPUBLIC XMLCharContext : public SvXMLImportContext
{ {
XMLCharContext(const XMLCharContext&); XMLCharContext(const XMLCharContext&) SAL_DELETED_FUNCTION;
void operator =(const XMLCharContext&); void operator =(const XMLCharContext&) SAL_DELETED_FUNCTION;
protected: protected:
sal_Int16 m_nControl; sal_Int16 m_nControl;
sal_uInt16 m_nCount; sal_uInt16 m_nCount;
......
...@@ -41,8 +41,8 @@ class XMLOFF_DLLPUBLIC XMLPropertyHandlerFactory : public salhelper::SimpleRefer ...@@ -41,8 +41,8 @@ class XMLOFF_DLLPUBLIC XMLPropertyHandlerFactory : public salhelper::SimpleRefer
struct Impl; struct Impl;
Impl* mpImpl; Impl* mpImpl;
XMLPropertyHandlerFactory( const XMLPropertyHandlerFactory& ); // disabled XMLPropertyHandlerFactory( const XMLPropertyHandlerFactory& ) SAL_DELETED_FUNCTION;
XMLPropertyHandlerFactory& operator= ( const XMLPropertyHandlerFactory& ); // disabled XMLPropertyHandlerFactory& operator= ( const XMLPropertyHandlerFactory& ) SAL_DELETED_FUNCTION;
public: public:
XMLPropertyHandlerFactory(); XMLPropertyHandlerFactory();
......
...@@ -54,8 +54,8 @@ private: ...@@ -54,8 +54,8 @@ private:
static OldFillStyleDefinitionSet maFooterSet; static OldFillStyleDefinitionSet maFooterSet;
static OldFillStyleDefinitionSet maParaSet; static OldFillStyleDefinitionSet maParaSet;
SAL_DLLPRIVATE XMLPropStyleContext(XMLPropStyleContext &); // not defined XMLPropStyleContext(XMLPropStyleContext &) SAL_DELETED_FUNCTION;
SAL_DLLPRIVATE void operator =(XMLPropStyleContext &); // not defined void operator =(XMLPropStyleContext &) SAL_DELETED_FUNCTION;
protected: protected:
......
...@@ -672,7 +672,7 @@ public: ...@@ -672,7 +672,7 @@ public:
void PopTextListsHelper(); void PopTextListsHelper();
private: private:
XMLTextParagraphExport(XMLTextParagraphExport &); // private copy-ctor because of explicit copy-ctor of unique_ptr XMLTextParagraphExport(XMLTextParagraphExport &) SAL_DELETED_FUNCTION;
}; };
inline const XMLTextListAutoStylePool& inline const XMLTextListAutoStylePool&
......
...@@ -57,9 +57,8 @@ class XMLOFF_DLLPUBLIC SvXMLImportPropertyMapper : public salhelper::SimpleRefer ...@@ -57,9 +57,8 @@ class XMLOFF_DLLPUBLIC SvXMLImportPropertyMapper : public salhelper::SimpleRefer
SvXMLImport& rImport; // access to error handling SvXMLImport& rImport; // access to error handling
SAL_DLLPRIVATE SvXMLImportPropertyMapper(SvXMLImportPropertyMapper &); SvXMLImportPropertyMapper(SvXMLImportPropertyMapper &) SAL_DELETED_FUNCTION;
// not defined void operator =(SvXMLImportPropertyMapper &) SAL_DELETED_FUNCTION;
SAL_DLLPRIVATE void operator =(SvXMLImportPropertyMapper &); // not defined
protected: protected:
......
...@@ -39,8 +39,8 @@ class XMLOFF_DLLPUBLIC XMLPropertySetMapper : public salhelper::SimpleReferenceO ...@@ -39,8 +39,8 @@ class XMLOFF_DLLPUBLIC XMLPropertySetMapper : public salhelper::SimpleReferenceO
Impl* mpImpl; Impl* mpImpl;
XMLPropertySetMapper( const XMLPropertySetMapper& ); // disabled. XMLPropertySetMapper( const XMLPropertySetMapper& ) SAL_DELETED_FUNCTION;
XMLPropertySetMapper& operator= ( const XMLPropertySetMapper& ); // disabled. XMLPropertySetMapper& operator= ( const XMLPropertySetMapper& ) SAL_DELETED_FUNCTION;
public: public:
/** The last element of the XMLPropertyMapEntry-array must contain NULL-values. /** The last element of the XMLPropertyMapEntry-array must contain NULL-values.
......
...@@ -186,8 +186,8 @@ class XMLOFF_DLLPUBLIC SvXMLStylesContext : public SvXMLImportContext ...@@ -186,8 +186,8 @@ class XMLOFF_DLLPUBLIC SvXMLStylesContext : public SvXMLImportContext
SAL_DLLPRIVATE const SvXMLTokenMap& GetStyleStylesElemTokenMap(); SAL_DLLPRIVATE const SvXMLTokenMap& GetStyleStylesElemTokenMap();
SAL_DLLPRIVATE SvXMLStylesContext(SvXMLStylesContext &); // not defined SvXMLStylesContext(SvXMLStylesContext &) SAL_DELETED_FUNCTION;
SAL_DLLPRIVATE void operator =(SvXMLStylesContext &); // not defined void operator =(SvXMLStylesContext &) SAL_DELETED_FUNCTION;
protected: protected:
......
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