summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-25 15:04:15 +0200
committerNoel Grandin <noel@peralex.com>2016-08-29 09:23:46 +0200
commit8ae8e5d12eea6c3416674b4ce83a29fa3e6f99b4 (patch)
treec3adf8dd6815116fe1b8ca55cda999edaa3872b8 /tools
parent0157009f2293a255e2de682832ef9074924dd4b5 (diff)
cid#1371171 Missing move assignment operator
Change-Id: I3150428f130823cdb1584e30c54f5591896214cf
Diffstat (limited to 'tools')
-rw-r--r--tools/source/ref/globname.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/source/ref/globname.cxx b/tools/source/ref/globname.cxx
index f92a9f217e8e..67bbf7e153be 100644
--- a/tools/source/ref/globname.cxx
+++ b/tools/source/ref/globname.cxx
@@ -106,6 +106,12 @@ SvGlobalName & SvGlobalName::operator = ( const SvGlobalName & rObj )
return *this;
}
+SvGlobalName & SvGlobalName::operator = ( SvGlobalName && rObj )
+{
+ pImp = std::move(rObj.pImp);
+ return *this;
+}
+
SvStream& WriteSvGlobalName( SvStream& rOStr, const SvGlobalName & rObj )
{
rOStr.WriteUInt32( rObj.pImp->szData.Data1 );