diff options
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/po.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx index 48ec1a68ecf0..72644095c8f8 100644 --- a/l10ntools/source/po.cxx +++ b/l10ntools/source/po.cxx @@ -287,7 +287,7 @@ PoEntry& PoEntry::operator=(const PoEntry& rPo) PoEntry& PoEntry::operator=(PoEntry&& rPo) { m_pGenPo = std::move(rPo.m_pGenPo); - m_bIsInitialized = rPo.m_bIsInitialized; + m_bIsInitialized = std::move(rPo.m_bIsInitialized); return *this; } |