summaryrefslogtreecommitdiff
path: root/l10ntools
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2016-04-05 07:56:33 +0300
committerTor Lillqvist <tml@collabora.com>2016-04-05 07:56:33 +0300
commit9473274d41e8645b9aa82e1ba5f2d2a41e2485b0 (patch)
tree18e4a8e9d7ca9c5b9d95a9b2a0e410b662616dcd /l10ntools
parent08b8de7c93a80f6c5a0d131fa07da8b1eb622ff9 (diff)
Bin noise comments and superfluous vertical whitespace
Change-Id: I21620816a80e542fe9771ef22322c4bc42ce50bd
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/source/po.cxx19
1 files changed, 0 insertions, 19 deletions
diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx
index 1d8223e869f7..7881be384ebf 100644
--- a/l10ntools/source/po.cxx
+++ b/l10ntools/source/po.cxx
@@ -25,7 +25,6 @@
#pragma warning (pop)
#endif
-
#include "po.hxx"
#include "helper.hxx"
@@ -37,7 +36,6 @@
class GenPoEntry
{
private:
-
OString m_sExtractCom;
OString m_sReference;
OString m_sMsgCtxt;
@@ -47,7 +45,6 @@ private:
bool m_bNull;
public:
-
GenPoEntry();
virtual ~GenPoEntry();
// Default copy constructor and copy operator work well
@@ -219,10 +216,6 @@ void GenPoEntry::readFromFile(std::ifstream& rIFStream)
}
}
-
-// Class PoEntry
-
-
PoEntry::PoEntry()
: m_bIsInitialized( false )
{
@@ -399,10 +392,6 @@ OString PoEntry::genKeyId(const OString& rGenerator)
return OString(sKeyId);
}
-
-// Class PoHeader
-
-
namespace
{
// Get actual time in "YEAR-MO-DA HO:MI+ZONE" form
@@ -442,10 +431,6 @@ PoHeader::~PoHeader()
delete m_pGenPo;
}
-
-// Class PoOfstream
-
-
PoOfstream::PoOfstream()
: m_aOutPut()
, m_bIsAfterHeader( false )
@@ -503,10 +488,6 @@ void PoOfstream::writeEntry( const PoEntry& rPoEntry )
rPoEntry.m_pGenPo->writeToFile( m_aOutPut );
}
-
-// Class PoIfstream
-
-
namespace
{