summaryrefslogtreecommitdiff
path: root/l10ntools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-09-12 11:13:35 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-09-12 14:22:48 +0100
commit703ad53629fb8f9002483142f906249e6160b4db (patch)
tree28feccafc558839b710e95c392d96a87d3e5c535 /l10ntools
parent9f3906f1f0c860449b452871f7cb19b77a508eb5 (diff)
this doesn't need a virtual dtor
Change-Id: I5c628a063fb5309f493729ee4bd7b122a3d2c3d5
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/source/po.cxx8
1 files changed, 1 insertions, 7 deletions
diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx
index f446a2f31672..c604577bfa08 100644
--- a/l10ntools/source/po.cxx
+++ b/l10ntools/source/po.cxx
@@ -37,9 +37,7 @@ private:
bool m_bNull;
public:
- GenPoEntry();
- virtual ~GenPoEntry();
- // Default copy constructor and copy operator work well
+ GenPoEntry();
const OString& getReference() const { return m_sReference; }
const OString& getMsgCtxt() const { return m_sMsgCtxt; }
@@ -124,10 +122,6 @@ GenPoEntry::GenPoEntry()
{
}
-GenPoEntry::~GenPoEntry()
-{
-}
-
void GenPoEntry::writeToFile(std::ofstream& rOFStream) const
{
if ( rOFStream.tellp() != std::ofstream::pos_type( 0 ))