summaryrefslogtreecommitdiff
path: root/l10ntools/inc
diff options
context:
space:
mode:
authorZolnai Tamás <zolnaitamas2000@gmail.com>2012-12-11 19:11:35 +0100
committerZolnai Tamás <zolnaitamas2000@gmail.com>2012-12-11 22:30:29 +0100
commitdddca20c4871c7f7694510123f2366c3a179c06c (patch)
treefa4a42b26ffbc68f29b3f0796f3b3ca5772969c4 /l10ntools/inc
parent2462391f4cc2ffad4fb218afe83ce0ed38f45207 (diff)
Skip poheader
Po headers can be various and they don not contain any needed information for merge so skip it without any checking. Change-Id: I6d81b7c85bfdbfd961361d98131ed80ba304e9ba
Diffstat (limited to 'l10ntools/inc')
-rw-r--r--l10ntools/inc/po.hxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/l10ntools/inc/po.hxx b/l10ntools/inc/po.hxx
index ace9e09e3643..a84b5a0a58a2 100644
--- a/l10ntools/inc/po.hxx
+++ b/l10ntools/inc/po.hxx
@@ -122,12 +122,11 @@ class PoIfstream: private boost::noncopyable
private:
std::ifstream m_aInPut;
- bool m_bIsAfterHeader;
bool m_bEof;
public:
- enum Exception { INVALIDENTRY, INVALIDHEADER };
+ enum Exception { INVALIDENTRY };
PoIfstream();
~PoIfstream();
@@ -136,7 +135,6 @@ public:
void open(const OString& rFileName);
void close();
- void readHeader(PoHeader& rHeader);
void readEntry(PoEntry& rPo);
};