diff options
Diffstat (limited to 'tools/source')
-rw-r--r-- | tools/source/ref/globname.cxx | 6 |
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 ); |