summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-02-07 12:34:38 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-02-07 12:36:05 +0100
commit61c50286fa2b6cf455bbd067ed6e8a31105b5475 (patch)
treef088d88cb09991c20660edc4e7abd42682a68438 /writerfilter
parentadd9dae7035a86204def97a953c75e26f313c51c (diff)
loplugin:deletedspecial
Change-Id: I6e5fb5562d73239eae32a4ef668aa88551608be2
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/ooxml/OOXMLFastContextHandler.hxx2
-rw-r--r--writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx4
-rw-r--r--writerfilter/source/rtftok/rtfvalue.hxx2
3 files changed, 4 insertions, 4 deletions
diff --git a/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx b/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
index 190bf28341a7..30215268405c 100644
--- a/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
+++ b/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
@@ -239,7 +239,7 @@ protected:
bool inPositionV;
private:
- void operator =(OOXMLFastContextHandler &); // not defined
+ void operator =(OOXMLFastContextHandler &) SAL_DELETED_FUNCTION;
/// Handles AlternateContent. Returns true, if children of the current element should be ignored.
bool prepareMceContext(Token_t nElement, const css::uno::Reference<css::xml::sax::XFastAttributeList>& Attribs);
diff --git a/writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx b/writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx
index 5a142d375702..bc5bc08a5b43 100644
--- a/writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx
+++ b/writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx
@@ -88,8 +88,8 @@ public:
void setIsSubstream( bool bSubstream );
private:
- OOXMLFastDocumentHandler(OOXMLFastDocumentHandler &); // not defined
- void operator =(OOXMLFastDocumentHandler &); // not defined
+ OOXMLFastDocumentHandler(OOXMLFastDocumentHandler &) SAL_DELETED_FUNCTION;
+ void operator =(OOXMLFastDocumentHandler &) SAL_DELETED_FUNCTION;
css::uno::Reference< css::uno::XComponentContext > m_xContext;
diff --git a/writerfilter/source/rtftok/rtfvalue.hxx b/writerfilter/source/rtftok/rtfvalue.hxx
index dcd5bbaf81e0..970c2328dad2 100644
--- a/writerfilter/source/rtftok/rtfvalue.hxx
+++ b/writerfilter/source/rtftok/rtfvalue.hxx
@@ -58,7 +58,7 @@ public:
RTFShape& getShape() const;
bool equals(RTFValue& rOther);
private:
- RTFValue& operator=(RTFValue const& rOther);
+ RTFValue& operator=(RTFValue const& rOther) SAL_DELETED_FUNCTION;
int m_nValue;
OUString m_sValue;
std::shared_ptr<RTFSprms> m_pAttributes;