summaryrefslogtreecommitdiff
path: root/include/editeng
diff options
context:
space:
mode:
authorTamás Zolnai <tamas.zolnai@collabora.com>2017-04-14 17:03:28 +0200
committerTamás Zolnai <tamas.zolnai@collabora.com>2017-04-15 15:40:56 +0200
commit820e47fdecd47b171786d3aadef5cc77e93b795e (patch)
treee314811dcd8bf877a1d2651666ee128c61965e51 /include/editeng
parentbcb371b1a830442610ad7fda476eda5271427a50 (diff)
Avoid using implicit assignment operator
Change-Id: If9b67d16e468f9a705140da2c7b39721b47c5799
Diffstat (limited to 'include/editeng')
-rw-r--r--include/editeng/outlobj.hxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/editeng/outlobj.hxx b/include/editeng/outlobj.hxx
index 1477e38d8b5b..24c806b6952e 100644
--- a/include/editeng/outlobj.hxx
+++ b/include/editeng/outlobj.hxx
@@ -46,6 +46,9 @@ struct OutlinerParaObjData
OutlinerParaObjData( const OutlinerParaObjData& r );
+ // assignment operator
+ OutlinerParaObjData& operator=(const OutlinerParaObjData& rCandidate) = delete;
+
// destructor
~OutlinerParaObjData();