summaryrefslogtreecommitdiffstats
path: root/include/oox/dump
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-02-07 12:23:39 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-02-07 12:36:00 +0100
commit6a161173803a4ba619a95b9c8da1f00e376819bb (patch)
tree7994105fc88f709a34822681c7dc57471adaf60b /include/oox/dump
parentloplugin:deletedspecial (diff)
downloadcore-6a161173803a4ba619a95b9c8da1f00e376819bb.tar.gz
core-6a161173803a4ba619a95b9c8da1f00e376819bb.zip
loplugin:deletedspecial
Change-Id: I37eb6c976779aeec829d312920ab1d18884c0f2f
Diffstat (limited to 'include/oox/dump')
-rw-r--r--include/oox/dump/dumperbase.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/oox/dump/dumperbase.hxx b/include/oox/dump/dumperbase.hxx
index 7abfbb39c71e..5bdb01f05d02 100644
--- a/include/oox/dump/dumperbase.hxx
+++ b/include/oox/dump/dumperbase.hxx
@@ -1103,8 +1103,8 @@ public:
explicit IndentGuard( const OutputRef& rxOut ) : mrOut( *rxOut ) { mrOut.incIndent(); }
~IndentGuard() { mrOut.decIndent(); }
private:
- IndentGuard( const IndentGuard& );
- IndentGuard& operator=( const IndentGuard& );
+ IndentGuard( const IndentGuard& ) SAL_DELETED_FUNCTION;
+ IndentGuard& operator=( const IndentGuard& ) SAL_DELETED_FUNCTION;
private:
Output& mrOut;
};
@@ -1127,8 +1127,8 @@ public:
void tab() { mrOut.tab(); }
void tab( size_t nCol ) { mrOut.tab( nCol ); }
private:
- TableGuard( const TableGuard& );
- TableGuard& operator=( const TableGuard& );
+ TableGuard( const TableGuard& ) SAL_DELETED_FUNCTION;
+ TableGuard& operator=( const TableGuard& ) SAL_DELETED_FUNCTION;
private:
Output& mrOut;
};
@@ -1143,8 +1143,8 @@ public:
~ItemGuard() { mrOut.endItem(); }
void cont() { mrOut.contItem(); }
private:
- ItemGuard( const ItemGuard& );
- ItemGuard& operator=( const ItemGuard& );
+ ItemGuard( const ItemGuard& ) SAL_DELETED_FUNCTION;
+ ItemGuard& operator=( const ItemGuard& ) SAL_DELETED_FUNCTION;
private:
Output& mrOut;
};
@@ -1157,8 +1157,8 @@ public:
explicit MultiItemsGuard( const OutputRef& rxOut ) : mrOut( *rxOut ) { mrOut.startMultiItems(); }
~MultiItemsGuard() { mrOut.endMultiItems(); }
private:
- MultiItemsGuard( const MultiItemsGuard& );
- MultiItemsGuard& operator=( const MultiItemsGuard& );
+ MultiItemsGuard( const MultiItemsGuard& ) SAL_DELETED_FUNCTION;
+ MultiItemsGuard& operator=( const MultiItemsGuard& ) SAL_DELETED_FUNCTION;
private:
Output& mrOut;
};