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.cxx21
1 files changed, 5 insertions, 16 deletions
diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx
index 2c0b4f88b254..bc4611b539ea 100644
--- a/l10ntools/source/po.cxx
+++ b/l10ntools/source/po.cxx
@@ -116,14 +116,7 @@ namespace
}
GenPoEntry::GenPoEntry()
- : m_sExtractCom()
- , m_sReferences( std::vector<OString>() )
- , m_sMsgCtxt( OString() )
- , m_sMsgId( OString() )
- , m_sMsgIdPlural( OString() )
- , m_sMsgStr( OString() )
- , m_sMsgStrPlural( std::vector<OString>() )
- , m_bFuzzy( false )
+ : m_bFuzzy( false )
, m_bCFormat( false )
, m_bNull( false )
{
@@ -479,14 +472,12 @@ PoHeader::~PoHeader()
}
PoOfstream::PoOfstream()
- : m_aOutPut()
- , m_bIsAfterHeader( false )
+ : m_bIsAfterHeader( false )
{
}
PoOfstream::PoOfstream(const OString& rFileName, OpenMode aMode )
- : m_aOutPut()
- , m_bIsAfterHeader( false )
+ : m_bIsAfterHeader( false )
{
open( rFileName, aMode );
}
@@ -552,14 +543,12 @@ bool lcl_CheckInputEntry(const GenPoEntry& rEntry)
}
PoIfstream::PoIfstream()
- : m_aInPut()
- , m_bEof( false )
+ : m_bEof( false )
{
}
PoIfstream::PoIfstream(const OString& rFileName)
- : m_aInPut()
- , m_bEof( false )
+ : m_bEof( false )
{
open( rFileName );
}