summaryrefslogtreecommitdiff
path: root/l10ntools/source/po.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'l10ntools/source/po.cxx')
-rw-r--r--l10ntools/source/po.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx
index 4662d58e0567..f446a2f31672 100644
--- a/l10ntools/source/po.cxx
+++ b/l10ntools/source/po.cxx
@@ -289,7 +289,7 @@ PoEntry& PoEntry::operator=(const PoEntry& rPo)
return *this;
}
-OString PoEntry::getSourceFile() const
+OString const & PoEntry::getSourceFile() const
{
assert( m_bIsInitialized );
return m_pGenPo->getReference();
@@ -343,14 +343,14 @@ bool PoEntry::isFuzzy() const
}
// Get translation string in merge format
-OString PoEntry::getMsgId() const
+OString const & PoEntry::getMsgId() const
{
assert( m_bIsInitialized );
return m_pGenPo->getMsgId();
}
// Get translated string in merge format
-OString PoEntry::getMsgStr() const
+const OString& PoEntry::getMsgStr() const
{
assert( m_bIsInitialized );
return m_pGenPo->getMsgStr();