diff options
Diffstat (limited to 'l10ntools/source')
-rw-r--r-- | l10ntools/source/po.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx index 856a76b61835..d17a0708f242 100644 --- a/l10ntools/source/po.cxx +++ b/l10ntools/source/po.cxx @@ -229,7 +229,7 @@ PoEntry::PoEntry( OString sMsgCtxt = rGroupId + "\n" + - (rLocalId.isEmpty() ? OString( "" ) : rLocalId + "\n") + + (rLocalId.isEmpty() ? OString() : rLocalId + "\n") + rResType; switch(eType){ case TTEXT: @@ -243,7 +243,7 @@ PoEntry::PoEntry( m_pGenPo->setMsgCtxt(sMsgCtxt); m_pGenPo->setMsgId(rText); m_pGenPo->setExtractCom( - ( !rHelpText.isEmpty() ? rHelpText + "\n" : OString( "" )) + + ( !rHelpText.isEmpty() ? rHelpText + "\n" : OString()) + genKeyId( m_pGenPo->getReference() + rGroupId + rLocalId + rResType + rText ) ); m_bIsInitialized = true; } |