diff options
author | Armin Le Grand <Armin.Le.Grand@cib.de> | 2018-05-18 16:15:02 +0200 |
---|---|---|
committer | Armin Le Grand <Armin.Le.Grand@cib.de> | 2018-05-19 00:29:26 +0200 |
commit | e1a8338876bd161de4e9d9a4b22d4bc5335f7cee (patch) | |
tree | 4e24e44f240d2638d4163b15475da9fa4cd8cd02 /svx/source/svdraw/svdotext.cxx | |
parent | 44a468323f3f011c41f892117f418987f9c98477 (diff) |
tdf#116979 Fixed 3D operator= to correct copy/paste
Change-Id: I81483a4d23523650cd9098794dd6101253b88e1c
Reviewed-on: https://gerrit.libreoffice.org/54546
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Armin Le Grand <Armin.Le.Grand@cib.de>
Diffstat (limited to 'svx/source/svdraw/svdotext.cxx')
-rw-r--r-- | svx/source/svdraw/svdotext.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx index 686a1b76e5d1..9469e79843a1 100644 --- a/svx/source/svdraw/svdotext.cxx +++ b/svx/source/svdraw/svdotext.cxx @@ -1014,8 +1014,9 @@ SdrTextObj& SdrTextObj::operator=(const SdrTextObj& rObj) { if( this == &rObj ) return *this; - // call parent - SdrObject::operator=(rObj); + + // call parent. tdf#116979: use the correct parent class + SdrAttrObj::operator=(rObj); maRect = rObj.maRect; aGeo =rObj.aGeo; |