diff options
Diffstat (limited to 'l10ntools/source/po.cxx')
-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 7b8a1cacb3c1..8d47a7d39410 100644 --- a/l10ntools/source/po.cxx +++ b/l10ntools/source/po.cxx @@ -116,7 +116,7 @@ namespace } GenPoEntry::GenPoEntry() - : m_sExtractCom( OString() ) + : m_sExtractCom() , m_sReferences( std::vector<OString>() ) , m_sMsgCtxt( OString() ) , m_sMsgId( OString() ) @@ -181,7 +181,7 @@ void GenPoEntry::readFromFile(std::ifstream& rIFStream) { m_sExtractCom.append("\n"); } - m_sExtractCom.append(sLine.copy(3)); + m_sExtractCom.append(sLine.subView(3)); } else if (sLine.startsWith("#: ")) { |